Files
Ilyastarcek e9cf63c1fb fix
2025-11-07 15:57:27 +03:00

10 lines
127 B
Docker

FROM python:3.12-alpine
COPY ./ /app/
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["/app/start_server.sh"]