fix: correct nginx config file copy command in Dockerfile

This commit is contained in:
Marc Emmanuel 2026-01-11 21:10:14 +01:00
parent 926eda7cb0
commit e5898aab0d

View file

@ -22,5 +22,5 @@ FROM nginx:stable-alpine
# Copy built files from builder stage
COPY --from=builder /app/dist /usr/share/nginx/html
# Move the customized nginx config file to the nginx folder
RUN mv /usr/share/nginx/html/.docker/default.conf /etc/nginx/conf.d/default.conf
# Copy the customized nginx config file to the nginx folder
COPY .docker/default.conf /etc/nginx/conf.d/default.conf