Fix Dockerfile

This commit is contained in:
David Stotijn 2020-09-25 21:16:30 +02:00
parent 226762f8e1
commit 35753c55a1

View file

@ -8,7 +8,7 @@ COPY go.mod go.sum ./
RUN go mod download
COPY cmd ./cmd
COPY pkg ./pkg
RUN go build ./cmd/hetty
RUN go build -o hetty ./cmd/hetty
FROM node:${NODE_VERSION}-alpine AS node-builder
WORKDIR /app