17 lines
558 B
Docker
17 lines
558 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /srv
|
|
|
|
COPY app/requirements.txt app/requirements.txt
|
|
RUN pip install --no-cache-dir -r app/requirements.txt
|
|
# Chromium for print_pdf.py (ADR-097) -- --with-deps henter apt-avhengighetene
|
|
# Chromium trenger (fonter/libnss3/libatk osv.), python:3.12-slim har dem ikke.
|
|
# Merkbart større image (~300-500MB) -- akseptert kostnad, se ADR-097.
|
|
RUN playwright install --with-deps chromium
|
|
|
|
COPY app/ app/
|
|
COPY handicap_engine.py handicap_engine.py
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|