Skip to content

Commit

Permalink
Merge pull request #67 from kikislater/master
Browse files Browse the repository at this point in the history
Fix: image doesn't build anymore
  • Loading branch information
kikislater authored Sep 3, 2022
2 parents bf48f1a + 7d4e241 commit e8e527e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ ENV DEBIAN_FRONTEND noninteractive

USER root

RUN apt update
RUN apt install -y -qq --no-install-recommends software-properties-common build-essential cmake git \
# Use old-releases for 21.04
RUN printf "deb http://old-releases.ubuntu.com/ubuntu/ hirsute main restricted\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute-updates main restricted\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute universe\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute-updates universe\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute multiverse\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute-updates multiverse\ndeb http://old-releases.ubuntu.com/ubuntu/ hirsute-backports main restricted universe multiverse" > /etc/apt/sources.list

RUN apt-get update
RUN apt-get install -y -qq --no-install-recommends software-properties-common build-essential cmake git \
exiv2 libimage-exiftool-perl proj-bin gdal-bin figlet imagemagick pdal libpdal-dev \
libboost-all-dev libtbb-dev libssl-dev libcurl4-openssl-dev pkg-config libpth-dev \
curl libx11-dev python3-pip python3-setuptools python3-shapely
Expand All @@ -19,7 +22,7 @@ RUN pip3 install --trusted-host pypi.org --trusted-host pypi.python.org --truste
RUN pip3 install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org scikit-image

RUN curl --silent --location https://deb.nodesource.com/setup_14.x | bash -
RUN apt install -y nodejs
RUN apt-get install -y nodejs
RUN npm install -g nodemon

# Build Entwine
Expand Down

0 comments on commit e8e527e

Please sign in to comment.