Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v20.17.0 #215

Merged
merged 1 commit into from
Oct 8, 2024
Merged
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 backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build static files
# Node Bullseye has npm
FROM node:20.14.0-bullseye-slim AS build
FROM node:20.17.0-bullseye-slim AS build
ENV NODE_ENV=production

# Copy and build
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5
start_period: 10s
timeout: 5s
image: node:20.14.0-bullseye-slim
image: node:20.17.0-bullseye-slim
ports: ["5000:5000"]
restart: always
volumes: ["./backend:/app", "/app/node_modules"]
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Use this section once builds are fixed

FROM node:20.14.0-bullseye-slim AS build
FROM node:20.17.0-bullseye-slim AS build

# Build static files
WORKDIR /app
Expand Down
Loading