From 98fdb3e43cbc1f851e67ee6147a4c2c497359072 Mon Sep 17 00:00:00 2001 From: Harry Martland Date: Sat, 18 Aug 2018 02:15:24 +0100 Subject: [PATCH] improve(docker): use nginx image (#4796) The nginx image contains a newer viersion on nginx --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5a8741b9..8a1d2f86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.8 +FROM nginx:1.15-alpine LABEL maintainer="fehguy" @@ -16,9 +16,6 @@ ENV SWAGGER_JSON "/app/swagger.json" ENV PORT 8080 ENV BASE_URL "" -RUN apk add --no-cache nginx -RUN mkdir -p /run/nginx - COPY nginx.conf /etc/nginx/ # copy swagger files to the `/js` folder -- GitLab