Skip to content

Commit

Permalink
Pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lucca-renovate[bot] authored Dec 15, 2024
1 parent 9963d2b commit 1789b31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the application
FROM docker.io/library/golang:1.23-bookworm AS back
FROM docker.io/library/golang:1.23-bookworm@sha256:ef30001eeadd12890c7737c26f3be5b3a8479ccdcdc553b999c84879875a27ce AS back

WORKDIR /go/src/app

Expand All @@ -10,7 +10,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags "-s" -o luc


# Build the Svelte SPA
FROM docker.io/library/debian:bookworm AS front
FROM docker.io/library/debian:bookworm@sha256:17122fe3d66916e55c0cbd5bbf54bb3f87b3582f4d86a755a0fd3498d360f91b AS front

WORKDIR /app

Expand All @@ -28,7 +28,7 @@ RUN npm run build


# Image release
FROM docker.io/library/alpine:latest
FROM docker.io/library/alpine:latest@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45

WORKDIR /root/
EXPOSE 3000
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm
FROM debian:bookworm@sha256:17122fe3d66916e55c0cbd5bbf54bb3f87b3582f4d86a755a0fd3498d360f91b

WORKDIR /app

Expand Down
16 changes: 8 additions & 8 deletions front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
},
"type": "module",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup": "^3.29.5",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.2.2",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-css-only": "^4.5.2",
"svelte": "^4.2.19"
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "15.3.1",
"rollup": "3.29.5",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-svelte": "7.2.2",
"@rollup/plugin-terser": "0.4.4",
"rollup-plugin-css-only": "4.5.2",
"svelte": "4.2.19"
},
"dependencies": {
"sirv-cli": "^2.0.2"
Expand Down

0 comments on commit 1789b31

Please sign in to comment.