mirror of
https://github.com/certbot/certbot.git
synced 2026-02-03 20:40:36 -05:00
i need this for some other upgrades i'm working on. using these debian buster images which were [EOL'd ages ago](https://www.debian.org/releases/) is giving me problems while i was at it, i fixed up up the following warnings docker was printing at me: * https://docs.docker.com/reference/build-checks/legacy-key-value-format/ * https://docs.docker.com/reference/build-checks/maintainer-deprecated/
6 lines
186 B
Text
6 lines
186 B
Text
FROM certbot-compatibility-test
|
|
LABEL org.opencontainers.image.authors="certbot-dev@eff.org"
|
|
|
|
RUN apt-get install apache2 -y
|
|
|
|
ENTRYPOINT [ "certbot-compatibility-test", "-p", "apache" ]
|