Some checks failed
PR tests / build-and-smoke (pull_request) Failing after 32s
13 lines
281 B
Docker
13 lines
281 B
Docker
FROM python:3.13.9-slim
|
|
|
|
RUN apt update
|
|
RUN apt upgrade -y
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt --extra-index-url https://git.theprivateserver.de/api/packages/PHB/pypi/simple/
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "python", "api_service.py" ] |