mirror of
https://github.com/informaticker/cchat.git
synced 2024-11-21 17:21:56 +01:00
24 lines
549 B
Docker
24 lines
549 B
Docker
|
# Use an official Python runtime as the base image
|
||
|
FROM python:3.9-slim
|
||
|
|
||
|
# Set the working directory in the container
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Copy the requirements file into the container
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
# Install the required packages
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
# Copy the rest of the application code
|
||
|
COPY . .
|
||
|
|
||
|
# Make port 5000 available to the world outside this container
|
||
|
EXPOSE 5000
|
||
|
|
||
|
# Define environment variable for Flask
|
||
|
ENV FLASK_APP=app.py
|
||
|
|
||
|
# Run the application
|
||
|
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
|