File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 37
37
38
38
- name : Upload coverage
39
39
run : bash <(curl -s https://codecov.io/bash)
40
+
41
+ docker-build :
42
+ runs-on : ubuntu-latest
43
+ steps :
44
+ - uses : actions/checkout@v4
45
+ - name : Build
46
+ run : docker build .
Original file line number Diff line number Diff line change 1
- FROM golang:1.21-alpine3.19 AS builder
2
- RUN apk add make
1
+ FROM golang:1.21-bullseye AS builder
3
2
WORKDIR /ethconnect
4
3
RUN apt-get update -y \
5
4
&& apt-get install -y build-essential git \
@@ -14,7 +13,7 @@ ADD . .
14
13
RUN cp go.mod.new go.mod
15
14
RUN make clean deps build
16
15
17
- FROM debian:buster -slim
16
+ FROM debian:bullseye -slim
18
17
WORKDIR /ethconnect
19
18
COPY --from=builder /ethconnect/ethconnect .
20
19
COPY --from=builder /ethconnect/ethbinding.so .
You can’t perform that action at this time.
0 commit comments