mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 06:21:32 +01:00
9 lines
140 B
Docker
9 lines
140 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
bash \
|
|
certbot
|
|
|
|
ENTRYPOINT [ "certbot" ]
|