Skip to content

Commit

Permalink
fix with new dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
codeskyblue committed Sep 17, 2018
1 parent 8e4187f commit 56aec4c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
FROM golang:1.9 AS build
FROM golang:1.10
WORKDIR /go/src/github.com/codeskyblue/gohttpserver
ADD . /go/src/github.com/codeskyblue/gohttpserver/
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gohttpserver .
RUN go get -v
RUN CGO_ENABLED=0 GOOS=linux go build -o gohttpserver .

FROM alpine:3.6
FROM debian:stretch
#FROM alpine:3.6
WORKDIR /app
RUN mkdir -p /app/public
VOLUME /app/public
ADD res ./res
ADD assets ./assets
COPY --from=build /go/src/github.com/codeskyblue/gohttpserver/gohttpserver .
EXPOSE 8000
CMD ["/app/gohttpserver", "--root=/app/public"]

0 comments on commit 56aec4c

Please sign in to comment.