Skip to content

Commit

Permalink
Add minimalistic docker image 🐳
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterlange committed Apr 26, 2018
1 parent 4390696 commit bce8738
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3-alpine

WORKDIR /app
ADD requirements.txt setup.py /app/
RUN pip install -r requirements.txt
RUN adduser -h /app -D app
USER app

ENV PATH "/app:$PATH"
ADD . /app/

0 comments on commit bce8738

Please sign in to comment.