-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (32 loc) · 865 Bytes
/
Dockerfile
File metadata and controls
41 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Use the Python 3.10 slim image as the base
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && \
apt-get install -y \
pkg-config \
libcairo2-dev \
gcc \
g++ \
make \
build-essential \
python3-dev \
libffi-dev \
libssl-dev \
libsystemd-dev \
libgirepository1.0-dev \
libdbus-1-dev \
libcairo2-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements file
COPY requirements.txt .
# Upgrade pip and install Python dependencies
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . .
# Expose the application port
EXPOSE 8000
# Define the command to run the application
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--timeout", "120", "config.wsgi:application"]