Attempt I don't know

This commit is contained in:
2019-03-22 17:38:23 -06:00
parent d784b4b308
commit 57df7bce67

View File

@@ -10,7 +10,7 @@ RUN mkdir /app
ADD . /app ADD . /app
WORKDIR /app WORKDIR /app
RUN go build -ldflags="-w -s" -o server RUN go build -ldflags="-w -s"
FROM alpine:latest AS production FROM alpine:latest AS production
COPY --from=builder /app . COPY --from=builder /app .
@@ -18,4 +18,4 @@ COPY --from=builder /app .
VOLUME /Manuals VOLUME /Manuals
EXPOSE 8080 EXPOSE 8080
CMD ["./server"] CMD ["./Server"]