microservices/deployment-service/snakeapi_service/dockerfile

16 lines
273 B
Text
Raw Normal View History

2025-04-25 09:21:18 -07:00
FROM python:3.11-slim
WORKDIR /app
2025-04-29 11:40:06 -07:00
RUN pip install --no-cache-dir jupyter flask awscli flask_cors nbconvert nbformat
2025-04-25 09:21:18 -07:00
COPY entrypoint.sh .
2025-04-29 12:22:48 -07:00
COPY notebooks ./notebooks
2025-04-29 15:01:23 -07:00
COPY snakeapi_server.py .
2025-04-25 09:21:18 -07:00
RUN chmod +x entrypoint.sh
ENV PORT=3006
EXPOSE 3006
CMD ["./entrypoint.sh"]