We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a4a04 commit 8ea5431Copy full SHA for 8ea5431
.github/workflows/dockerimage.yml
@@ -13,6 +13,8 @@ jobs:
13
steps:
14
- name: checkout
15
uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 0
18
19
- name: build and push to github packages
20
uses: docker/build-push-action@v1
Dockerfile
@@ -2,7 +2,7 @@ FROM golang:alpine AS BUILD
2
3
# make binary
4
RUN apk add --no-cache build-base musl-dev git curl make cmake
5
-RUN git clone https://github.com/projecteru2/core.git /go/src/github.com/projecteru2/core
+COPY . /go/src/github.com/projecteru2/core
6
WORKDIR /go/src/github.com/projecteru2/core
7
ARG KEEP_SYMBOL
8
RUN make build && ./eru-core --version
0 commit comments