Skip to content

Commit

Permalink
fix golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
kstoykov committed Sep 7, 2022
1 parent 6e3d319 commit 5091a24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/binary-builder/binary-builder.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:buster as builder
FROM golang:1.18.6-buster as builder

RUN apt update

Expand All @@ -12,7 +12,7 @@ RUN cd ./CudosNode && make

RUN FOLDER=$(ls /go/pkg/mod/github.com/\!cosm\!wasm/ | grep wasmvm@v) && ln -s /go/pkg/mod/github.com/\!cosm\!wasm/${FOLDER} /go/pkg/mod/github.com/\!cosm\!wasm/wasmvm

FROM golang:buster
FROM golang:1.18.6-buster

RUN apt update

Expand Down
2 changes: 1 addition & 1 deletion docker/debug-node/debug-node.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:buster
FROM golang:1.18.6-buster

ARG USER_ID
ARG USER_NAME
Expand Down

0 comments on commit 5091a24

Please sign in to comment.