Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6a0374a

Browse files
authoredOct 6, 2020
update Dockerfile (sandflow#47)
issue sandflow#17
1 parent 3b223e0 commit 6a0374a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎Dockerfile

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
FROM python:3.7-buster
22

3-
RUN apt-get update && apt-get -y install pipenv
4-
53
WORKDIR /usr/src/app
64

7-
COPY . .
5+
ADD . .
6+
7+
RUN apt-get update && \
8+
apt-get -y install pipenv
89

910
RUN pipenv install --dev
1011

11-
ENV PYTHONPATH src/main/python
12+
ENV PYTHONPATH src/main/python

0 commit comments

Comments
 (0)
Please sign in to comment.