8 lines
163 B
Docker
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 8000
|
|
ENTRYPOINT ["/entrypoint.sh"]
|