17 lines
455 B
Plaintext
17 lines
455 B
Plaintext
# Use the official Python image from the Docker Hub
|
|
FROM python:3.10-slim
|
|
|
|
# Set the working directory
|
|
WORKDIR /slaeforms
|
|
|
|
# Copy the rest of the application code to the working directory
|
|
COPY . .
|
|
|
|
# Install the dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Expose the port on which the app will run
|
|
EXPOSE 8000
|
|
|
|
# Define the command to run the application using Gunicorn
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "app:create_app()"] |