Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -44,8 +44,8 @@ RUN chmod -R 777 /aggregator
|
|
| 44 |
# install dependencies
|
| 45 |
RUN pip install -i ${PIP_INDEX_URL} --no-cache-dir -r requirements.txt
|
| 46 |
|
| 47 |
-
# expose port
|
| 48 |
-
EXPOSE
|
| 49 |
|
| 50 |
# start and run
|
| 51 |
CMD ["python", "-u", "subscribe/collect.py", "--all", "--overwrite", "--skip"]
|
|
|
|
| 44 |
# install dependencies
|
| 45 |
RUN pip install -i ${PIP_INDEX_URL} --no-cache-dir -r requirements.txt
|
| 46 |
|
| 47 |
+
# expose port 8501 (python)
|
| 48 |
+
EXPOSE 8501
|
| 49 |
|
| 50 |
# start and run
|
| 51 |
CMD ["python", "-u", "subscribe/collect.py", "--all", "--overwrite", "--skip"]
|