Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#1990)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jun 1, 2024
1 parent b4f6962 commit 2f2c60c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 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.13.1-bullseye-slim AS buildWithDevDeps
FROM node:20.14.0-bullseye-slim AS buildWithDevDeps

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -9,7 +9,7 @@ COPY ./src ./src
COPY ./prisma ./prisma
RUN npm ci --ignore-scripts --no-update-notifier
RUN npm run prisma-generate
FROM node:20.13.1-bullseye-slim AS build
FROM node:20.14.0-bullseye-slim AS build

# Install packages, build and keep only prod packages
WORKDIR /app
Expand Down
6 changes: 3 additions & 3 deletions charts/app/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 15.4.0
digest: sha256:c4fafaa46dee19c8447035b2bb266eed2ebf8ac7fe065efc2e6fb615c7f3f1a5
generated: "2024-05-23T02:14:52.275477599Z"
version: 15.5.1
digest: sha256:21277545d5b4baa84eec6f085b4e907b33e9215c51ac187b2f8626e3d0dc8e55
generated: "2024-05-30T21:57:44.059808647Z"
2 changes: 1 addition & 1 deletion charts/app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ appVersion: "1.16.0"
dependencies:
- name: postgresql
condition: bitnami-pg.enabled
version: 15.4.0
version: 15.5.1
repository: https://charts.bitnami.com/bitnami
alias: bitnami-pg
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions frontend/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.13.1-bullseye-slim AS build
FROM node:20.14.0-bullseye-slim AS build

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -12,7 +12,7 @@ RUN npm ci --ignore-scripts --no-update-notifier --omit=dev && \

# Deploy container
# Caddy serves static files
FROM caddy:2.7.6-alpine
FROM caddy:2.8.1-alpine
RUN apk add --no-cache ca-certificates

# Copy static files and run formatting
Expand Down

0 comments on commit 2f2c60c

Please sign in to comment.