Files
wiki/tasks/flightradar24/frontend/Dockerfile
2026-04-19 16:00:01 +03:00

15 lines
316 B
Docker

FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
libpq-dev gcc python3-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
COPY static/ /app/static/
CMD ["python", "-u", "main.py"]