Skip to content
Open
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
10 changes: 8 additions & 2 deletions clients/ethrex/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
ARG baseimage=ghcr.io/lambdaclass/ethrex
# This is the image we build on a push to main
# We do have a problem, if we're testing locally it doesn't show changes
# Removing this from here now, but the upstream version should use the ghcr.io version
# For now, users needs to build locally ethrex
# ARG baseimage=ghcr.io/lambdaclass/ethrex
ARG baseimage=ethrex

ARG tag=latest

FROM $baseimage:$tag as builder
FROM $baseimage:$tag AS builder

# Install script tools.
RUN apt-get update -y
Expand Down