remove chown in nginx build
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Philipp Lang 2023-07-20 18:27:49 +02:00
parent c0431a6857
commit 437125b573
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ RUN npm install && npm run prod && npm run img && rm -R node_modules
FROM nginx:1.21.6-alpine as nginx
WORKDIR /app
COPY --chown=www-data:www-data --from=node . /app
COPY --from=node . /app
COPY ./.docker/nginx/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80