Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanulde authored Jul 31, 2020
1 parent ecd6100 commit 9528b91
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM debian:sid-slim

LABEL maintainer="Joost van Ulden <joost.vanulden@canada.ca>"

# copy required files
COPY . .

RUN apt-get update && apt-get install -y libpq-dev gcc curl git-lfs gdal-bin python3-pip && \
pip3 install psycopg2~=2.6 && \
apt-get autoremove -y gcc && \
apt-get install -y postgresql-client && \
pip3 install --upgrade pip && pip install -r requirements.txt

ENV PYTHONUNBUFFERED 1

0 comments on commit 9528b91

Please sign in to comment.