mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 08:12:15 -04:00
use consistent casing to fix warnings
This commit is contained in:
parent
5ac3b4f34d
commit
c543452af1
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#base image
|
||||
FROM python:3.12-alpine3.18 as certbot
|
||||
FROM python:3.12-alpine3.18 AS certbot
|
||||
|
||||
ENTRYPOINT [ "certbot" ]
|
||||
EXPOSE 80 443
|
||||
|
|
@ -44,6 +44,6 @@ RUN apk add --no-cache --virtual .build-deps \
|
|||
#static definition for making a plugin, but beware that
|
||||
#using this layer definition will cause collisions if you make
|
||||
#extensive use of the cache.
|
||||
FROM certbot as certbot-plugin
|
||||
FROM certbot AS certbot-plugin
|
||||
COPY --from=plugin-src . /opt/certbot/src/plugin
|
||||
RUN python tools/pip_install.py --no-cache-dir --editable /opt/certbot/src/plugin
|
||||
|
|
|
|||
Loading…
Reference in a new issue