Update Dockerfile
This commit is contained in:
parent
9598409e53
commit
2c8fe82429
|
@ -17,14 +17,14 @@ RUN go get github.com/codegangsta/negroni \
|
||||||
github.com/gorilla/mux \
|
github.com/gorilla/mux \
|
||||||
github.com/xyproto/simpleredis/v2
|
github.com/xyproto/simpleredis/v2
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
ADD .guestbook-go/main.go .
|
ADD ./guestbook-go/main.go .
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
|
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=0 /app/main .
|
COPY --from=0 /app/main .
|
||||||
COPY .guestbook-go/public/index.html public/index.html
|
COPY ./guestbook-go/public/index.html public/index.html
|
||||||
COPY .guestbook-go/public/script.js public/script.js
|
COPY ./guestbook-go/public/script.js public/script.js
|
||||||
COPY .guestbook-go/public/style.css public/style.css
|
COPY ./guestbook-go/public/style.css public/style.css
|
||||||
CMD ["/app/main"]
|
CMD ["/app/main"]
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
Loading…
Reference in New Issue