Skip to content

Commit

Permalink
Dockerfile for development
Browse files Browse the repository at this point in the history
Signed-off-by: Rolf Håvard Blindheim <rhblind@gmail.com>
  • Loading branch information
rhblind committed Jan 6, 2018
1 parent 8044b56 commit cb34124
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
@@ -0,0 +1,17 @@
FROM python:3-alpine

ENV DEBIAN_FRONTEND noninteractive
ENV PYTHONPATH /usr/local/src

RUN apk add --no-cache --update \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
binutils build-base python3-dev gdal geos \
&& rm -rf /var/cache/apk/*

COPY . /usr/local/src
WORKDIR /usr/local/src
RUN pip install -U pip setuptools \
&& pip install -r requirements.txt

VOLUME /usr/local/src
CMD ["sh"]

0 comments on commit cb34124

Please sign in to comment.