Files
2026-05-09 20:05:34 +02:00

8 lines
163 B
Docker

FROM python:3.14-slim
WORKDIR /app
COPY ./ok-server.py .
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 8080
ENTRYPOINT ["/entrypoint.sh"]