Spaces:
Sleeping
Sleeping
# 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 | |