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