gemiline / Dockerfile
alanchen1115's picture
Update Dockerfile
0450ec5 verified
raw
history blame
325 Bytes
# Use the official Python base image
FROM python:3.9
# Set the working directory in the container
WORKDIR /code
# Copy the requirements.txt file and install the Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Run the Flask application
CMD ["flask", "run", "--host=0.0.0.0"]