Verbose build, AMD64 features
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-01-18 11:56:39 +01:00
parent 6e16c26957
commit 7943793fbf
2 changed files with 2 additions and 2 deletions

View file

@ -7,6 +7,6 @@ steps:
- name: backend
image: golang:1.18-rc-bullseye
commands:
- go build -o orbeat .
- GOAMD64=v2 go build -v -o orbeat .
...

View file

@ -3,7 +3,7 @@ FROM golang:1.18-rc-bullseye
COPY . /src/orbeat
WORKDIR /src/orbeat
RUN go build -o orbeat . && mv orbeat /usr/bin && rm -rf /src/orbeat
RUN GOAMD64=v2 go build -v -o orbeat . && mv orbeat /usr/bin && rm -rf /src/orbeat
WORKDIR /
ENTRYPOINT ["/usr/bin/orbeat"]