From 342a3907047779fe0af8727b2348fc25cef903ae Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Sun, 2 Feb 2025 07:46:34 +0100 Subject: [PATCH] install dependencies into the right image --- fantom/Dockerfile-fullnode | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fantom/Dockerfile-fullnode b/fantom/Dockerfile-fullnode index 4f76ad34..646929a3 100644 --- a/fantom/Dockerfile-fullnode +++ b/fantom/Dockerfile-fullnode @@ -2,7 +2,7 @@ FROM golang:1.19-alpine as builder # Install packages we need -RUN apk add --no-cache make gcc musl-dev linux-headers git openssl xxd +RUN apk add --no-cache make gcc musl-dev linux-headers git # Make a folder to work in RUN mkdir /fantom @@ -19,7 +19,7 @@ RUN cd /fantom && make # Pull Fantom into a second stage deploy alpine container FROM alpine:latest -RUN apk add --no-cache ca-certificates wget tzdata +RUN apk add --no-cache ca-certificates wget tzdata openssl xxd COPY --from=builder /fantom/build/opera /usr/local/bin/ # Set entrypoint