Files
TUM-typst4ei/Dockerfile
2026-01-23 09:21:42 +01:00

12 lines
195 B
Docker

FROM python:3.12-alpine
WORKDIR /app
RUN apk add --no-cache curl git libsass
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "src/main.py"]