Skip to content

Commit

Permalink
go 1.22.2, geth 1.13.14, solc 0.8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Apr 10, 2024
1 parent 7737fe3 commit f4b8431
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.1 (2024-04-10)

* go 1.22.2, geth 1.13.14, solc 0.8.25

# 1.0.0 (2024-02-26)

* use foundryup to deploy prebuild binaries
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
rm -rf /var/lib/apt/lists/*

## Go Lang
ARG GO_VERSION=1.22.0
ARG GO_VERSION=1.22.2
ADD https://go.dev/dl/go${GO_VERSION}.linux-$TARGETARCH.tar.gz /goinstall/go${GO_VERSION}.linux-$TARGETARCH.tar.gz
RUN echo 'SHA256 of this go source package...'
RUN cat /goinstall/go${GO_VERSION}.linux-$TARGETARCH.tar.gz | sha256sum
Expand All @@ -32,7 +32,7 @@ RUN yamlfmt --version

## Go Ethereum
WORKDIR /go-ethereum
ARG ETH_VERSION=1.13.13
ARG ETH_VERSION=1.13.14
ADD https://github.com/ethereum/go-ethereum/archive/refs/tags/v${ETH_VERSION}.tar.gz /go-ethereum/go-ethereum-${ETH_VERSION}.tar.gz
RUN echo 'SHA256 of this go-ethereum package...'
RUN cat /go-ethereum/go-ethereum-${ETH_VERSION}.tar.gz | sha256sum
Expand Down Expand Up @@ -96,7 +96,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
RUN mkdir -p /usr/local/nvm
ENV NVM_DIR=/usr/local/nvm

ENV NODE_VERSION=v20.11.1
ENV NODE_VERSION=v20.12.2

ADD https://raw.githubusercontent.com/creationix/nvm/master/install.sh /usr/local/etc/nvm/install.sh
RUN bash /usr/local/etc/nvm/install.sh && \
Expand Down Expand Up @@ -140,7 +140,7 @@ COPY --chown=foundry:foundry --from=foundry-builder /home/foundry/.cargo /home/f
COPY --from=go-builder /usr/local/go /usr/local/go

## GO Ethereum Binaries
ARG ETH_VERSION=1.13.13
ARG ETH_VERSION=1.13.14
COPY --from=go-builder /go-ethereum/go-ethereum-${ETH_VERSION}/build/bin /usr/local/bin

# Foundry Up
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ To use this development container in Visual Studio Code, specify the `Dockerfile

Everything needed to develop smart contracts with Ethereum and [Foundry](https://github.com/foundry-rs/foundry)

GO: 1.22.0
ETH: 1.13.13
SOLC: 0.8.24
GO: 1.22.2
ETH: 1.13.14
SOLC: 0.8.25

#### Deployments

Expand Down

0 comments on commit f4b8431

Please sign in to comment.