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 all non-major dependencies #690

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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 admin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG port=4200


# Build container
FROM node:20.16.0-alpine3.19 AS build
FROM node:20.18.0-alpine3.19 AS build

# Install dependencies and build static content
ARG build_dir
Expand Down
4 changes: 2 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# RedHat UBI 8 with nodejs 20
FROM registry.access.redhat.com/ubi8/nodejs-20:1-58 AS builder
FROM registry.access.redhat.com/ubi8/nodejs-20:1-64 AS builder

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -11,7 +11,7 @@ RUN dnf install -y ca-certificates && \


# Deployment container
FROM registry.access.redhat.com/ubi8/ubi:8.10-1054
FROM registry.access.redhat.com/ubi8/ubi:8.10-1088

# Node packages and dependencies
COPY --from=builder /usr/bin/node /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion public/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG build_dir=public
ARG port=4300

# Build container
FROM node:20.16.0-alpine3.19 AS build
FROM node:20.18.0-alpine3.19 AS build

# Install dependencies and build static content
ARG build_dir
Expand Down
Loading