Skip to content

Commit 070f6bc

Browse files
Deployment: Remove sumo requirement from worker & open 443 port in staging(Cloud-CV#2009)
1 parent f4327da commit 070f6bc

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

docker-compose-staging.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ services:
2828
NODE_ENV: staging
2929
ports:
3030
- "80:80"
31+
- "443:443"
3132
volumes:
3233
- /code/node_modules
3334
- /code/bower_components

docker/prod/worker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ADD requirements/* /code/
1717

1818
RUN pip install -U cffi service_identity cython==0.29 numpy==1.14.5
1919
RUN pip install -r prod.txt
20-
RUN pip install -r worker_production.txt
20+
RUN pip install -r worker.txt
2121

2222
ADD . /code
2323

requirements/worker.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
matplotlib==2.2.3
22
networkx==2.1
33
numpy==1.14.5
4+
pandas==0.23.4
45
pycocotools==2.0.0
56
scipy==1.1.0
67
sklearn==0.0

requirements/worker_production.txt

-2
This file was deleted.

settings/staging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
CORS_ORIGIN_WHITELIST = (
1010
'staging-evalai.s3.amazonaws.com',
11-
'staging-evalai.cloudcv.org',
11+
'evalai-staging.cloudcv.org',
1212
)

0 commit comments

Comments
 (0)