Files
FarmaFinder/pip-platform/Dockerfile
T
Antoni Nuñez Romeu 8615e213de
Run Tests on Branches / Backend Tests (push) Successful in 3m28s
Run Tests on Branches / Frontend Tests (push) Successful in 3m25s
Run Tests on Branches / PIP Tests (push) Failing after 9s
PIP PLATFORM ended
2026-07-01 17:19:03 +02:00

19 lines
348 B
Docker

FROM python:3.13-slim AS base
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY pyproject.toml ./
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir .
COPY . .
EXPOSE 8000
CMD ["python", "entrypoint.py"]