15 lines
224 B
Docker
15 lines
224 B
Docker
FROM certbot/certbot:latest
|
|
|
|
#SHELL ["/bin/ash", "-ex", "-c"]
|
|
|
|
# Install socat
|
|
RUN apk --no-cache add socat
|
|
|
|
# Copy scripts
|
|
COPY ./docker/scripts/ /etc/scripts/
|
|
RUN chmod 755 /etc/scripts/*.sh
|
|
|
|
# Expose port 380
|
|
EXPOSE 380
|
|
|