Update nginx image (#5010)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-02-04 11:49:07 -03:00 committed by GitHub
parent 08e19a2788
commit 6ab10fa68d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 269 additions and 13 deletions

View file

@ -13,7 +13,7 @@
# limitations under the License.
FROM alpine:3.11 as builder
FROM --platform=$BUILDPLATFORM alpine:3.11 as builder
COPY . /
@ -21,7 +21,7 @@ RUN apk add -U bash \
&& /build.sh
# Use a multi-stage build
FROM alpine:3.11
FROM --platform=$BUILDPLATFORM alpine:3.11
ENV PATH=$PATH:/usr/local/luajit/bin:/usr/local/nginx/sbin:/usr/local/nginx/bin