Spaces:
Sleeping
Sleeping
File size: 552 Bytes
0aec9f3 e31cdeb 0aec9f3 8e3d213 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Use an official Python runtime as a parent image
FROM python:3.10
# Set Python to use unbuffered mode
ENV PYTHONUNBUFFERED 1
# Set the working directory in the container
RUN mkdir /var/www
ENV HOME /var/www
WORKDIR /var/www
# Copy the current directory contents into the container at /app
COPY . /var/www
RUN pip install -r requirements
# Make port 5000 available to the world outside this container
EXPOSE 7860
# Define environment variable
ENV FLASK_APP app.py
# Run app.py when the container launches
CMD flask run --host=0.0.0.0 --port=7860
|