AutomationSurvey / Dockerfile
saibsund's picture
Upload Dockerfile with huggingface_hub
d946b9b verified
raw
history blame contribute delete
148 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501"]