Update nginx image to use alpine 3.12

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-05-30 16:00:20 -04:00
parent 734f3853a4
commit efbd0e54e8
2 changed files with 7 additions and 13 deletions

View file

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