Correct Nginx and Alpine version in legacy branch (#7736)

This commit is contained in:
Rushank Jhanjaria 2021-10-03 13:57:06 -07:00 committed by GitHub
parent 23fa7c0450
commit 25b87436f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

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