diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 621453e..1942042 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -12,8 +12,12 @@ RUN --mount=type=cache,target=/var/cache/apk \ apk upgrade && apk add --update \ nginx openssl +# REMOVE CURRENT NGINX CONFIGURATIONS +RUN rm -f /etc/nginx/conf.d/* + # COPY CONFIGURATION FILES -ADD ./etc /etc +ADD ./etc/nginx/nginx.conf /etc/nginx/nginx.conf +ADD ./etc/nginx/conf.d /etc/nginx/conf.d ADD ./usr /usr # CLEAN APK CACHES