Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Phase 1: Builder
# =========================
FROM debian:12.5-slim AS builder
FROM debian:12.12-slim AS builder

# Install needed packages
RUN apt update -y && \
Expand All @@ -9,7 +9,7 @@ RUN apt update -y && \
WORKDIR "/da/src"

# Clone repo
ARG AVAIL_TAG=v1.8.0.3
ARG AVAIL_TAG=v2.3.4.0
RUN git clone -b $AVAIL_TAG --single-branch https://github.com/availproject/avail.git .

# This installs Rust and updates Rust to the right version.
Expand All @@ -22,7 +22,7 @@ RUN cp ./target/release/avail-node .

# Phase 2: Binary deployment
# =========================
FROM debian:12.5-slim
FROM debian:12.12-slim

RUN apt update -y && apt install curl -y

Expand All @@ -42,5 +42,5 @@ LABEL org.opencontainers.image.authors="The Avail Project Team" \

VOLUME ["/da/node-data"]
ENTRYPOINT ["/usr/local/bin/avail-node"]
CMD ["--chain", "goldberg", "--tmp", "--name", "MyAwesomeAvailNodeInContainer"]
CMD ["--chain", "turing", "--tmp", "--name", "MyAwesomeAvailNodeInContainer"]

2 changes: 1 addition & 1 deletion scripts/binaries/x86_64/debian-12.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:12.11-slim AS builder
FROM debian:12.12-slim AS builder

# This installs all dependencies that we need (besides Rust).
RUN apt update -y && \
Expand Down