forked from nginx-proxy/acme-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (23 loc) · 853 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM alpine:3.7
LABEL maintainer="Yves Blusseau <[email protected]> (@blusseau)"
ENV DEBUG=false \
DOCKER_GEN_VERSION=0.7.3 \
DOCKER_HOST=unix:///var/run/docker.sock
# Install packages required by the image
RUN apk add --update \
bash \
ca-certificates \
curl \
jq \
openssl \
&& rm /var/cache/apk/*
# Install docker-gen
RUN curl -L https://github.com/jwilder/docker-gen/releases/download/${DOCKER_GEN_VERSION}/docker-gen-linux-amd64-${DOCKER_GEN_VERSION}.tar.gz \
| tar -C /usr/local/bin -xz
# Install simp_le
COPY /install_simp_le.sh /app/install_simp_le.sh
RUN chmod +rx /app/install_simp_le.sh && sync && /app/install_simp_le.sh && rm -f /app/install_simp_le.sh
COPY /app/ /app/
WORKDIR /app
ENTRYPOINT [ "/bin/bash", "/app/entrypoint.sh" ]
CMD [ "/bin/bash", "/app/start.sh" ]