6 lines
196 B
Docker
6 lines
196 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache logrotate dcron tzdata
|
|
COPY logrotate.conf /etc/logrotate.conf
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"] |