Keep generated files in the repository.

This reduces the OS dependencies to build a released version.
This commit is contained in:
Joachim Bauch 2024-07-24 14:00:07 +02:00
commit fd2ace0482
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02
24 changed files with 13165 additions and 38 deletions

View file

@ -6,7 +6,7 @@ WORKDIR /workdir
COPY . .
RUN touch /.dockerenv && \
apk add --no-cache bash git build-base protobuf && \
apk add --no-cache bash git make && \
GOOS=${TARGETOS} GOARCH=${TARGETARCH} make proxy
FROM alpine:3

View file

@ -6,7 +6,7 @@ WORKDIR /workdir
COPY . .
RUN touch /.dockerenv && \
apk add --no-cache bash git build-base protobuf && \
apk add --no-cache bash git make && \
GOOS=${TARGETOS} GOARCH=${TARGETARCH} make server
FROM alpine:3