Tst / Dockerfile
Niansuh's picture
Create Dockerfile
ba119fe verified
raw
history blame contribute delete
374 Bytes
# Use a Python base image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /app
# Copy the application files into the container
COPY . /app
# Install required Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Flask will run on
EXPOSE 5000
# Set the command to run the application
CMD ["python", "app.py"]