16 lines
394 B
Docker
16 lines
394 B
Docker
|
FROM python:3.10-slim
|
||
|
|
||
|
EXPOSE 8051
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Install the app's dependencies
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
# Copy the app's code
|
||
|
COPY main.py .
|
||
|
|
||
|
# Set the entrypoint to run the app
|
||
|
ENTRYPOINT [ "streamlit", "run" ]
|
||
|
CMD [ "main.py", "--server.port=8080", "--server.headless", "true", "--server.fileWatcherType", "none", "--browser.gatherUsageStats", "false"]
|