Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN npm install -g @angular/cli
RUN ng build --configuration=development

# SECOND STAGE: Serve the application using Nginx
FROM nginx:1.29.5-alpine
FROM nginx:1.29.6-alpine

# Copy the built application from the previous stage
COPY --from=build /app/dist/pdataviewer/browser /usr/share/nginx/html
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN npm install -g @angular/cli
RUN ng build --configuration=production

# SECOND STAGE: Serve the application using Nginx
FROM nginx:1.29.5-alpine
FROM nginx:1.29.6-alpine

# Copy the built application from the previous stage
COPY --from=build /app/dist/pdataviewer/browser /usr/share/nginx/html
Expand Down