Files
zbiorki_app/deploy/app/Dockerfile
Mateusz Gruszczyński c0daa93fe9 python3.1
2025-09-27 21:28:17 +02:00

19 lines
427 B
Docker

#FROM python:3.13-slim
FROM python:3.14-rc-trixie
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
&& apt-get install -y build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /app/instance
CMD ["python", "run_waitress.py"]