Oops
continuous-integration/drone/push Build is failing Details

This commit is contained in:
DutchEllie 2022-05-11 14:46:40 +02:00
parent 73a3f181be
commit cdf03abb13
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
3 changed files with 14 additions and 12 deletions

View File

@ -10,7 +10,7 @@ steps:
image: golang:1.16.4-alpine
volumes:
- name: build
path: /drone/src
path: /build
environment:
CGO_ENABLED: 0
GOOS: linux
@ -21,7 +21,7 @@ steps:
privileged: true
volumes:
- name: build
path: /drone/src
path: /build
settings:
cache_from:
- "dutchellie/pepebot:latest"
@ -51,7 +51,7 @@ steps:
image: golang:1.17-alpine
volumes:
- name: build
path: /drone/src
path: /build
environment:
CGO_ENABLED: 0
GOOS: linux
@ -63,7 +63,7 @@ steps:
privileged: true
volumes:
- name: build
path: /drone/src
path: /build
settings:
cache_from:
- "dutchellie/pepebot_service:latest"
@ -94,7 +94,7 @@ steps:
image: golang:1.16.4-alpine
volumes:
- name: build
path: /drone/src
path: /build
environment:
CGO_ENABLED: 0
GOOS: linux
@ -105,7 +105,7 @@ steps:
privileged: true
volumes:
- name: build
path: /drone/src
path: /build
settings:
cache_from:
- "dutchellie/pepebot:latest"
@ -135,7 +135,7 @@ steps:
image: golang:1.17-alpine
volumes:
- name: build
path: /drone/src
path: /build
environment:
CGO_ENABLED: 0
GOOS: linux
@ -147,7 +147,7 @@ steps:
privileged: true
volumes:
- name: build
path: /drone/src
path: /build
settings:
cache_from:
- "dutchellie/pepebot_service:latest"

View File

@ -8,6 +8,7 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /drone/src
COPY app .
WORKDIR /build
COPY app /root
WORKDIR /root
CMD ["./app"]

View File

@ -9,6 +9,7 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /drone/src
COPY app .
WORKDIR /build
COPY app /root
WORKDIR /root
CMD ["./app"]