hottub/Dockerfile

5 lines
123 B
Docker
Raw Normal View History

2023-06-25 00:26:06 -05:00
FROM alpine:latest
2023-06-25 23:55:56 -05:00
COPY . opt
RUN apk add --no-cache supercronic
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]