chore: update cmd entry folder

This commit is contained in:
Steven
2023-06-20 15:55:42 +08:00
parent 805ab9996e
commit 8ce1d21c2a
5 changed files with 12 additions and 18 deletions

View File

@ -17,7 +17,7 @@ WORKDIR /backend-build
COPY . .
COPY --from=frontend /frontend-build/dist ./server/dist
RUN CGO_ENABLED=0 go build -o shortify ./main.go
RUN go build -o shortify ./cmd/shortify/main.go
# Make workspace with above generated files.
FROM alpine:3.16 AS monolithic