Skip to content

Commit

Permalink
go 1.21.3, node 18.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Oct 11, 2023
1 parent d4013f8 commit 2cd46ed
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.2 (2023-10-11)

* go ethereum: 1.13.3
* node: 18.18.1

1.0.1 (2023-10-03)

* go ethereum: 1.13.2
Expand Down
4 changes: 2 additions & 2 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.21.1
ARG GO_VERSION=1.21.3
ADD https://go.dev/dl/go${GO_VERSION}.linux-$TARGETARCH.tar.gz /go-ethereum/go${GO_VERSION}.linux-$TARGETARCH.tar.gz
RUN echo 'SHA256 of this go source package...'
RUN cat /go-ethereum/go${GO_VERSION}.linux-$TARGETARCH.tar.gz | sha256sum
Expand Down Expand Up @@ -101,7 +101,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
RUN mkdir -p /usr/local/nvm
ENV NVM_DIR=/usr/local/nvm

ENV NODE_VERSION=v18.18.0
ENV NODE_VERSION=v18.18.1

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
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ 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.21.1
GO: 1.21.3
ETH: 1.13.2
SOLC: 0.8.21

Expand Down Expand Up @@ -52,11 +52,18 @@ SOLC: 0.8.21
FROM ghcr.io/xmtp/foundry:latest
ENV PATH=${PATH}:~/.cargo/bin
RUN ~xmtp/.cargo/bin/forge build --sizes
CMD ~xmtp/.cargo/bin/forge test -vvv
RUN forge build --sizes
RUN forge test -vvv
```

### Architecture
* linux/amd64
* linux/arm64

### Help

```shell
$ forge --help
$ anvil --help
$ cast --help
```

0 comments on commit 2cd46ed

Please sign in to comment.