Skip to content

Commit

Permalink
Merge pull request #36 from larsl-net/main
Browse files Browse the repository at this point in the history
update backend service Images
  • Loading branch information
patrickhener committed Oct 1, 2023
2 parents 1ba80fd + 80a6114 commit 1c5f3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build backend service
FROM golang:1.19 AS build
FROM golang:1.21 AS build

WORKDIR /usr/src/app

Expand All @@ -12,7 +12,7 @@ RUN go build -v -o /usr/local/bin/app .


# build runtime image
FROM debian:bullseye-slim
FROM debian:bookworm-slim
COPY --from=build /usr/local/bin/app /usr/local/bin/app
EXPOSE 8000
CMD ["app"]

0 comments on commit 1c5f3a0

Please sign in to comment.