mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
8ff991327f
Signed-off-by: Jess Frazelle <jess@oxide.computer>
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" ]
|