Skip to content

Commit

Permalink
fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerhut committed Nov 21, 2019
1 parent a13d6d5 commit 74abee9
Showing 1 changed file with 13 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/docker-images/user-synchronizer/Dockerfile

This file was deleted.

13 changes: 13 additions & 0 deletions src/docker-images/user-synchronizer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.5

RUN pip install pipenv

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY user-synchronizer/Pipfile user-synchronizer/Pipfile.lock ./
RUN pipenv install --system --deploy

COPY user-synchronizer .

CMD python .

0 comments on commit 74abee9

Please sign in to comment.