Compare commits

...

2 Commits

Author SHA1 Message Date
omerfirmak
00a2007a48 chore: auto version bump [bot] 2025-03-10 18:33:05 +00:00
Ömer Faruk Irmak
bc8c5b15d1 add solc image to coordiantor docker 2025-03-10 21:12:29 +03:00
2 changed files with 5 additions and 2 deletions

View File

@@ -40,8 +40,11 @@ FROM ubuntu:20.04
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/src/coordinator/internal/logic/verifier/lib
ENV CGO_LDFLAGS="-Wl,--no-as-needed -ldl"
# ENV CHAIN_ID=534353
RUN apt update && apt install vim netcat-openbsd net-tools curl jq -y
RUN apt update && apt install vim netcat-openbsd net-tools curl jq wget -y
RUN mkdir -p /src/coordinator/internal/logic/verifier/lib
RUN mkdir -p /usr/local/bin
RUN wget https://github.com/ethereum/solidity/releases/download/v0.8.19/solc-static-linux -O /usr/local/bin/solc
RUN chmod +x /usr/local/bin/solc
COPY --from=builder /bin/lib /src/coordinator/internal/logic/verifier/lib
COPY --from=builder /bin/coordinator_api /bin/
RUN /bin/coordinator_api --version

View File

@@ -5,7 +5,7 @@ import (
"runtime/debug"
)
var tag = "v4.4.93"
var tag = "v4.4.94"
var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {