1
0
mirror of https://github.com/go-acme/lego.git synced 2024-11-21 13:25:48 +02:00
lego/buildx.Dockerfile

11 lines
188 B
Docker
Raw Normal View History

# syntax=docker/dockerfile:1.4
FROM alpine:3
RUN apk --no-cache --no-progress add git ca-certificates tzdata \
&& rm -rf /var/cache/apk/*
COPY lego /
ENTRYPOINT ["/lego"]
EXPOSE 80