fix(docker): bug fix in docker file
Build and Push Docker image / build-and-push (push) Successful in 6m6s Details

the nginx.conf was copied to the wrong location
This commit is contained in:
Valentin Kolb 2024-05-13 20:40:22 +02:00
parent 057927e835
commit 36e6605647
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ COPY --from=build /app/public /usr/share/nginx/html
#copy allowed mime types and nginx config
COPY ./nginx/mime.types /etc/nginx/mime.types
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80 to access the app
EXPOSE 80