20 lines
462 B
Docker
20 lines
462 B
Docker
|
# Use an official Python runtime as a parent image
|
||
|
FROM python:3.9-slim
|
||
|
|
||
|
# Set the working directory in the container
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Copy the requirements file
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
# Install the dependencies
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
# Copy the application code
|
||
|
COPY app.py .
|
||
|
|
||
|
# Expose the port the application will run on
|
||
|
EXPOSE 5000
|
||
|
|
||
|
# Run the command to start the application when the container launches
|
||
|
CMD ["python", "app.py"]
|