Files
Verificacion_EFOS_Backend/Dockerfile.dev
2026-04-01 13:48:40 -07:00

16 lines
223 B
Docker

# Dockerfile.dev
FROM python:3.11-alpine
WORKDIR /app
RUN apk add --no-cache \
gcc \
musl-dev \
postgresql-dev
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000