2023-01-05 02:46:26 +00:00
|
|
|
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
|
2024-08-24 16:43:35 +00:00
|
|
|
COPY *.py .
|
2023-01-05 02:46:26 +00:00
|
|
|
|
|
|
|
# Set the entrypoint to run the app
|
|
|
|
ENTRYPOINT [ "streamlit", "run" ]
|
2023-01-05 03:17:34 +00:00
|
|
|
CMD [ "main.py", "--server.port=8051", "--server.headless", "true", "--server.fileWatcherType", "none", "--browser.gatherUsageStats", "false"]
|