Skip to content

Commit

Permalink
Merge ad11210 into b0d28e5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 11, 2024
2 parents b0d28e5 + ad11210 commit 03ba38a
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 195 deletions.
4 changes: 2 additions & 2 deletions .docker-hub/print/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:20.12.2 AS build-stage
FROM node:20.12.1 AS build-stage
ARG SENTRY_AUTH_TOKEN
ARG SENTRY_ORG
ARG SENTRY_PRINT_PROJECT
Expand All @@ -22,7 +22,7 @@ COPY print .
RUN npm run build

# production stage
FROM node:20.12.2 AS production-stage
FROM node:20.12.1 AS production-stage
WORKDIR /app

COPY --from=build-stage /app/.output ./.output
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.9'

services:
frontend:
image: node:20.12.2
image: node:20.12.1
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -94,7 +94,7 @@ services:
- ./api/public:/srv/api/public:ro

pdf:
image: node:20.12.2
image: node:20.12.1
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -113,7 +113,7 @@ services:
- CI=${CI}

print:
image: node:20.12.2
image: node:20.12.1
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -192,7 +192,7 @@ services:
working_dir: /e2e

translation:
image: node:20.12.2
image: node:20.12.1
profiles: ['translation']
container_name: 'ecamp3-translation'
volumes:
Expand Down
113 changes: 46 additions & 67 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"@testing-library/user-event": "14.5.2",
"@testing-library/vue": "5.9.0",
"@vitejs/plugin-vue2": "2.3.1",
"@vitest/coverage-v8": "1.4.0",
"@vitest/coverage-v8": "1.5.0",
"@vue/babel-preset-app": "5.0.8",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/test-utils": "1.3.6",
Expand All @@ -113,7 +113,7 @@
"vite": "5.2.8",
"vite-plugin-comlink": "4.0.3",
"vite-plugin-vue2-svg": "0.4.0",
"vitest": "1.4.0",
"vitest": "1.5.0",
"vitest-canvas-mock": "0.3.3",
"vue-template-compiler": "2.7.15"
},
Expand Down
Loading

0 comments on commit 03ba38a

Please sign in to comment.