Skip to content

Commit 1b203e5

Browse files
committed
Fix typo in requirements.txt and update Dockerfile
1 parent 36ada13 commit 1b203e5

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Dockerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
#docker build -t python-bitflow:latest .
21
FROM python:3.7-slim
32

4-
5-
ADD ./ /opt/python-bitflow
63
WORKDIR /opt/python-bitflow
7-
RUN pip install --upgrade pip
8-
RUN pip install --upgrade setuptools
9-
RUN pip install --no-cache-dir -r requirments.txt
4+
COPY . .
5+
RUN pip install --no-cache-dir -r requirements.txt
6+
7+
RUN python setup.py install
8+
9+
ENTRYPOINT ["python-bitflow"]
1010

11-
ENTRYPOINT [ "python3.6", "./bitflow.py" ]
File renamed without changes.

0 commit comments

Comments
 (0)