We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ada13 commit 1b203e5Copy full SHA for 1b203e5
Dockerfile
@@ -1,11 +1,10 @@
1
-#docker build -t python-bitflow:latest .
2
FROM python:3.7-slim
3
4
-
5
-ADD ./ /opt/python-bitflow
6
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
+COPY . .
+RUN pip install --no-cache-dir -r requirements.txt
+
+RUN python setup.py install
+ENTRYPOINT ["python-bitflow"]
10
11
-ENTRYPOINT [ "python3.6", "./bitflow.py" ]
requirments.txt requirements.txtrequirments.txt renamed to requirements.txt
0 commit comments