From 9b46ea78741ee9348bb96f06308955c88ca4ef28 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Sat, 3 Sep 2022 19:31:36 -0800 Subject: [PATCH] spacing --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 829d5f2..805420e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,6 @@ RUN pnpm install --frozen-lockfile --shamefully-hoist COPY frontend . RUN pnpm build - - # Build API FROM golang:alpine AS builder RUN apk update @@ -20,7 +18,6 @@ COPY --from=frontend-builder app/.output go/src/app/app/api/public RUN go get -d -v ./... RUN CGO_ENABLED=1 GOOS=linux go build -o /go/bin/api -v ./app/api/*.go - # Production Stage FROM alpine:latest