Skip to content

Commit b1c8f48

Browse files
committed
Merge branch 'master' of github.com:bitflow-stream/python-bitflow
2 parents 216cd33 + 1b203e5 commit b1c8f48

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)