Skip to content

Commit

Permalink
update docker images (#2445)
Browse files Browse the repository at this point in the history
* update docker images

* go 1.22.10

* 12-slim
  • Loading branch information
arturrez authored Dec 13, 2024
1 parent 15606d7 commit 506142e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ============= Compilation Stage ================
FROM golang:1.22.8-bullseye AS builder
FROM golang:1.22.10-bookworm AS builder

WORKDIR /build
# Copy and download avalanche dependencies using go mod
Expand All @@ -12,7 +12,7 @@ COPY . .
RUN ./scripts/build.sh

# ============= Cleanup Stage ================
FROM debian:11-slim
FROM debian:12-slim
WORKDIR /

# Copy the executables into the container
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:11-slim
FROM debian:12-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY avalanche /
RUN /avalanche config update disable
Expand Down

0 comments on commit 506142e

Please sign in to comment.