mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
Add makefile to make container and .pnpn-store to gitignore (#1996)
Running `make in_docker ...` on a fresh system failed: ``` => CACHED [stage-1 3/6] COPY --from=golang_image /usr/local/go /usr/local/go 0.0s => ERROR [stage-1 4/6] RUN make install-tools && mv /root/go/bin/* /usr/local/go/bin/ && chmod 755 /usr/local/go/bin/* 0.1s ------ > [stage-1 4/6] RUN make install-tools && mv /root/go/bin/* /usr/local/go/bin/ && chmod 755 /usr/local/go/bin/*: 0.132 make: *** No rule to make target 'install-tools'. Stop. ------ Dockerfile.make:14 -------------------- 13 | # Cache tools 14 | >>> RUN make install-tools && \ 15 | >>> mv /root/go/bin/* /usr/local/go/bin/ && \ 16 | >>> chmod 755 /usr/local/go/bin/* 17 | -------------------- ``` Fixed after adding the Makefile to the make container.
This commit is contained in:
parent
d9991e67e5
commit
669abdf690
2 changed files with 2 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -36,6 +36,7 @@ docker-compose.yml
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.out
|
*.out
|
||||||
/.env
|
/.env
|
||||||
|
/.pnpm-store
|
||||||
extras/
|
extras/
|
||||||
/build/
|
/build/
|
||||||
/dist/
|
/dist/
|
||||||
|
|
|
@ -7,6 +7,7 @@ RUN apk add --no-cache --update make gcc binutils-gold musl-dev && \
|
||||||
|
|
||||||
# Build packages.
|
# Build packages.
|
||||||
COPY --from=golang_image /usr/local/go /usr/local/go
|
COPY --from=golang_image /usr/local/go /usr/local/go
|
||||||
|
COPY Makefile /
|
||||||
ENV PATH=$PATH:/usr/local/go/bin
|
ENV PATH=$PATH:/usr/local/go/bin
|
||||||
|
|
||||||
# Cache tools
|
# Cache tools
|
||||||
|
|
Loading…
Reference in a new issue