-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (24 loc) · 902 Bytes
/
Dockerfile
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
# Usa una imagen base con Python
FROM python:3.10-slim
# Actualiza el sistema e instala las dependencias necesarias
RUN apt-get update && apt-get install -y \
build-essential \
default-libmysqlclient-dev \
pkg-config \
libmariadb-dev-compat \
libmariadb-dev \
&& apt-get clean
# Establece el directorio de trabajo en el contenedor
WORKDIR /app
# Copia el archivo de dependencias
COPY requirements.txt .
# Instala las dependencias de Python
RUN pip install --no-cache-dir -r requirements.txt
# Copia todo el código del proyecto
COPY . .
# Configura las variables de entorno necesarias para la ejecución
ENV PYTHONUNBUFFERED=1
# Expone el puerto para el servidor
EXPOSE 8000
# Ejecuta migraciones, collectstatic y Gunicorn
CMD ["sh", "-c", "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn cabigote.wsgi:application --bind 0.0.0.0:8000"]