Skip to content

Commit

Permalink
Merge pull request #28 from LuccaSA/update-security-1
Browse files Browse the repository at this point in the history
Security update
  • Loading branch information
arouene authored Sep 26, 2024
2 parents 8beb275 + e80d8f0 commit 9963d2b
Show file tree
Hide file tree
Showing 8 changed files with 96 additions and 1,215 deletions.
4 changes: 2 additions & 2 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.19-buster AS back
FROM docker.io/library/golang:1.23-bookworm 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:buster AS front
FROM docker.io/library/debian:bookworm AS front

WORKDIR /app

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:buster
FROM debian:bookworm

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ systemctl enable --now luccryptous
# Develop with Dockerfile.dev

``` shell
podman build -t luccryptous:dev ./Dockerfile.dev
podman build -t luccryptous:dev -f ./Dockerfile.dev .
podman run -it --rm -m 1024m -p 5000:5000,35729:35729 -v ~/Projects/luccryptous/views/:/app/:Z --name luccryptous_dev luccryptous:dev
```

Expand Down
Loading

0 comments on commit 9963d2b

Please sign in to comment.