Spaces:
Sleeping
Sleeping
File size: 283 Bytes
fac7fdf a578142 fac7fdf a578142 fac7fdf a578142 fac7fdf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# lightweight python
FROM python:3.11
RUN pip install --upgrade pip
# Copy local code to the container image.
WORKDIR /app
COPY . /app
# Install dependencies
RUN pip install -r requirements.txt
EXPOSE 80
# Run the streamlit on container startup
CMD ["streamlit", "run", "app.py"] |