sort directives that never change in Dockerfile

This commit is contained in:
Brad Warren
2017-03-06 19:31:05 -08:00
parent b23a259390
commit 6f8bf74c53
+2 -1
View File
@@ -1,9 +1,10 @@
FROM python:2-alpine
ENTRYPOINT [ "certbot" ]
EXPOSE 80 443
VOLUME /etc/letsencrypt /var/lib/letsencrypt
WORKDIR /opt/certbot
ENTRYPOINT [ "certbot" ]
COPY . src
RUN apk add --no-cache --virtual .certbot-deps \