Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -11,3 +11,5 @@ COPY . /app
|
|
11 |
# Install production dependencies.
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
|
|
|
|
|
11 |
# Install production dependencies.
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
+
# Run the web service on container startup.
|
15 |
+
CMD exec streamlit run app.py --server.enableCORS false
|