17 lines
No EOL
448 B
Docker
17 lines
No EOL
448 B
Docker
# Use the official Python image from the Docker Hub
|
|
FROM python:3.9-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Copy the requirements file into the container at /app
|
|
COPY requirements.txt .
|
|
|
|
# Install any dependencies specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the rest of the application code into the container at /app
|
|
COPY . .
|
|
|
|
# Run the application
|
|
CMD ["python", "./app.py"] |