docker-letsencrypt/Dockerfile
Maksim 3bd0027a3e resolved bug with email input
* added UID and GID environment variables
* updated docs
2021-08-18 19:11:48 +10:00

17 lines
427 B
Docker

# Base image
FROM alpine:latest
# Maintainer information
LABEL maintainer="Maksim Stojkovic <https://github.com/maksimstojkovic>" \
org.label-schema.vcs-url="https://github.com/maksimstojkovic/docker-letsencrypt"
# Install tools required
RUN apk --no-cache add certbot curl
# Copy scripts
WORKDIR /scripts
COPY ./scripts /scripts
RUN chmod -R +x /scripts
# Image starting command
CMD ["/bin/sh", "/scripts/start.sh"]