ahmadardhy's picture
Update Dockerfile
673a086 verified
raw
history blame contribute delete
No virus
431 Bytes
FROM python:3.10
# Set the working directory
WORKDIR /code
# Copy the requirements file into the container
COPY ./requirements.txt /code/requirements.txt
# Install the dependencies
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the rest of the application code
COPY . .
# Expose the port the app runs on
EXPOSE 7860
# Command to run the application
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]