Update alpine to 3.13

This commit is contained in:
Manuel Alejandro de Brito Fontes 2021-01-14 23:50:51 -03:00
parent a2e77185cc
commit ba05026037
5 changed files with 8 additions and 9 deletions

View file

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