Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
roelderickx committed Jul 3, 2021
1 parent 3ada665 commit 3aa2844
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ FROM amd64/ubuntu:20.04

WORKDIR /app

RUN apt-get update
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
libxml2-utils \
python-is-python3 \
pip && \
unlink /etc/localtime && \
ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime

RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
libxml2-utils \
gdal-bin \
libgdal-dev \
python-is-python3 \
python3-gdal \
libprotobuf-dev \
protobuf-compiler \
osmctools \
pip

RUN unlink /etc/localtime
RUN ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime
RUN apt-get install -y \
gdal-bin \
libgdal-dev \
python3-gdal \
libprotobuf-dev \
protobuf-compiler \
osmctools

RUN pip install cram lxml
RUN pip install --upgrade protobuf
Expand Down

0 comments on commit 3aa2844

Please sign in to comment.