From 4bedc5adb7030745502575de3a93cc3be3fc637b Mon Sep 17 00:00:00 2001 From: Midou36O Date: Sat, 3 Dec 2022 19:42:34 +0100 Subject: [PATCH] Delete dockerfile-arm64 --- Dockerfile-arm64 | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Dockerfile-arm64 diff --git a/Dockerfile-arm64 b/Dockerfile-arm64 deleted file mode 100644 index bcaf886..0000000 --- a/Dockerfile-arm64 +++ /dev/null @@ -1,14 +0,0 @@ -FROM arm64v8/golang:alpine AS build -WORKDIR /app -RUN apk add --no-cache git -RUN git clone https://codeberg.org/gothub/gothub . -RUN go mod download -RUN go build -ldflags "-X codeberg.org/gothub/gothub/pages.Version=$(git rev-parse --short HEAD)" - -FROM arm64v8/alpine:${ARCH} AS bin -WORKDIR /app -COPY --from=build /app/gothub . -COPY --from=build /app/public . -COPY --from=build /app/views . -CMD ["./gothub serve"] -EXPOSE 3000 \ No newline at end of file