microservices/deployment-service/snakeapi_service/dockerfile
2025-04-29 12:22:48 -07:00

14 lines
247 B
Text

FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir jupyter flask awscli flask_cors nbconvert nbformat
COPY entrypoint.sh .
COPY notebooks ./notebooks
RUN chmod +x entrypoint.sh
ENV PORT=3006
EXPOSE 3006
CMD ["./entrypoint.sh"]