From f40feca474f4762020195cdf19be4e1a8e26ca8b Mon Sep 17 00:00:00 2001 From: Sebastian Plattner Date: Sat, 30 Sep 2023 10:51:31 +0200 Subject: [PATCH] fix: release new patch version --- build/Dockerfile.multistage | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 build/Dockerfile.multistage diff --git a/build/Dockerfile.multistage b/build/Dockerfile.multistage deleted file mode 100644 index 437a7ab..0000000 --- a/build/Dockerfile.multistage +++ /dev/null @@ -1,29 +0,0 @@ -ARG GO_VERSION=1.21 -FROM golang:${GO_VERSION} AS build-env - -WORKDIR /go/src/app -COPY ./ . - -RUN go get -d -v ./... -RUN go install -v ./... - -FROM alpine:3 - -LABEL maintainer "Sebastian Plattner" -LABEL org.opencontainers.image.title "Unfolded Cirrle Remote Two Integraton Driber" -LABEL org.opencontainers.image.description "Golang based integration driver for a Unfolded Circle Remote Two" -LABEL org.opencontainers.image.authors "Sebastian Plattner" -LABEL org.opencontainers.image.source https://github.com/splattner/goucrt -LABEL org.opencontainers.image.licenses MPL-2.0 - -RUN apk --no-cache add libc6-compat - -COPY --from=build-env /go/bin/ucrt /app/ - -WORKDIR /app - -RUN adduser -D nonroot && mkdir /app/ucconfig && chown nonroot /app/ucconfig -USER nonroot - -ENTRYPOINT [ "/app/ucrt" ] -CMD [ "help" ]