crane/Dockerfile
Jonathan Branan f66a42a84a
All checks were successful
continuous-integration/drone/push Build is passing
removed crontab from dockerfile
2023-06-23 03:08:36 -05:00

7 lines
162 B
Docker

FROM python:alpine3.18
WORKDIR /
COPY . opt
RUN apk add --no-cache supercronic
RUN pip install requests
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]