testing / Dockerfile
psychologists's picture
Upload 4 files
16e6da6
raw
history blame
No virus
210 Bytes
# app/Dockerfile
FROM python:3.10-slim
WORKDIR /app
COPY ./ ./
RUN pip3 install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]