14 lines
241 B
Docker
14 lines
241 B
Docker
|
|
FROM python:3.10-slim-bookworm
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY requirements.txt .
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
RUN pip install uuid
|
||
|
|
|
||
|
|
COPY src/ ./src/
|
||
|
|
COPY src/static/ ./src/static/
|
||
|
|
COPY src/templates/ ./src/templates/
|
||
|
|
|
||
|
|
EXPOSE 8000
|