Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Fix missing argparse dependency #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions letsencrypt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM alpine:edge
RUN apk add --update \
bash \
certbot \
py2-pip \
tini \
&& rm -rf /var/cache/apk/*

Expand All @@ -14,6 +15,7 @@ ENV VIRTUAL_HOST_WEIGHT="999"
ENV PATH="/opt/letsencrypt/bin:$PATH"

COPY . /opt/letsencrypt/
RUN pip install --upgrade setuptools argparse
RUN ln -fs /opt/letsencrypt/bin/update-certs.sh /etc/periodic/daily/

ENTRYPOINT ["tini", "--"]
Expand Down