5 lines
123 B
Docker
5 lines
123 B
Docker
FROM alpine:latest
|
|
COPY . opt
|
|
RUN apk add --no-cache supercronic
|
|
RUN chmod +x /opt/entrypoint.sh
|
|
CMD ["/opt/entrypoint.sh"] |