Fix linting issue

This commit is contained in:
Jamie Curnow
2024-09-09 10:40:51 +10:00
parent 60c1cd58e3
commit 73c922d9e1
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
# Nginx Builder
#############
FROM debian:bookworm-slim as nginxbuilder
FROM debian:bookworm-slim AS nginxbuilder
ARG OPENRESTY_VERSION
ARG LUA_VERSION
@@ -34,7 +34,7 @@ RUN /tmp/build-openresty
# Final Image
#############
FROM debian:bookworm-slim as final
FROM debian:bookworm-slim AS final
LABEL maintainer="Jamie Curnow <jc@jc21.com>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
+1 -1
View File
@@ -1,5 +1,5 @@
ARG BASE_IMAGE=nginxproxymanager/nginx-full:latest
FROM $BASE_IMAGE as final
FROM $BASE_IMAGE AS final
ARG BASE_IMAGE
ARG TARGETPLATFORM
+2 -2
View File
@@ -1,6 +1,6 @@
ARG ACMESH_IMAGE=nginxproxymanager/nginx-full:acmesh
FROM golang:latest as go
FROM $ACMESH_IMAGE as final
FROM golang:latest AS go
FROM $ACMESH_IMAGE AS final
ARG ACMESH_IMAGE
ARG TARGETPLATFORM
+2 -2
View File
@@ -4,7 +4,7 @@ ARG BASE_IMAGE=nginxproxymanager/nginx-full:latest
# Certbot Builder
#############
FROM debian:bookworm-slim as certbotbuilder
FROM debian:bookworm-slim AS certbotbuilder
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
@@ -41,7 +41,7 @@ RUN pip install --no-cache-dir --upgrade pyopenssl \
#############
# Final Image
#############
FROM $BASE_IMAGE as final
FROM $BASE_IMAGE AS final
ARG BASE_IMAGE
ARG TARGETPLATFORM
+1 -1
View File
@@ -1,5 +1,5 @@
ARG CERTBOT_IMAGE=nginxproxymanager/nginx-full:certbot
FROM $CERTBOT_IMAGE as final
FROM $CERTBOT_IMAGE AS final
ARG CERTBOT_IMAGE
ARG TARGETPLATFORM