feat: generate and publish artefacts via jenkins
All checks were successful
Cadoles/goweb-oidc/pipeline/head This commit looks good
All checks were successful
Cadoles/goweb-oidc/pipeline/head This commit looks good
This commit is contained in:
30
misc/docker/Dockerfile
Normal file
30
misc/docker/Dockerfile
Normal file
@ -0,0 +1,30 @@
|
||||
FROM golang:1.19 AS build
|
||||
|
||||
ARG HTTP_PROXY=
|
||||
ARG HTTPS_PROXY=
|
||||
ARG http_proxy=
|
||||
ARG https_proxy=
|
||||
|
||||
RUN apt-get update && apt-get install -y make git bash
|
||||
|
||||
COPY . /src
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
RUN make ARCH_TARGETS=amd64 release-archive
|
||||
|
||||
FROM alpine as certs
|
||||
|
||||
RUN apk update && apk add ca-certificates
|
||||
|
||||
FROM busybox
|
||||
|
||||
COPY --from=build /src/release/server-linux-amd64 /app
|
||||
|
||||
COPY --from=certs /etc/ssl/certs /etc/ssl/certs
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENV HTTP_ADDRESS=:80
|
||||
|
||||
CMD ["bin/server", "-workdir", "/app", "-config", "server.yml"]
|
Reference in New Issue
Block a user