Files
crane/Dockerfile
jblu 9763e239b2
All checks were successful
ci / docker (push) Successful in 44s
migrated to crond
2026-04-09 13:00:23 -05:00

6 lines
146 B
Docker

FROM python:alpine3.23
WORKDIR /
COPY *.py entrypoint.sh /opt/
RUN pip install requests
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]