Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ozraru authored Apr 30, 2024
1 parent 971467d commit e2ead11
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM golang:alpine AS build
RUN apk add git gcc musl-dev
ARG GOARCH=amd64
ENV GOARCH ${GOARCH}
ENV CGO_ENABLED 1
ADD . /go/src/Vanilla/
WORKDIR /go/src/Vanilla
Expand All @@ -10,4 +8,4 @@ RUN go build .
FROM alpine
COPY --from=build /go/src/Vanilla/Vanilla /bin/Vanilla
WORKDIR /data
CMD Vanilla
CMD Vanilla

0 comments on commit e2ead11

Please sign in to comment.