You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
602 B
28 lines
602 B
FROM golang:alpine
|
|
|
|
ENV GO111MODULE=on
|
|
ENV GOPROXY=https://goproxy.io,direct
|
|
WORKDIR /go/src/gin-vue-admin
|
|
COPY server/ ./
|
|
|
|
RUN cat ./config.yaml
|
|
COPY .docker-compose/shell/server-handle.sh .
|
|
RUN ls -al
|
|
RUN sh ./server-handle.sh
|
|
RUN rm -f server-handle.sh
|
|
RUN cat ./config.yaml
|
|
|
|
RUN go env && go build -o server .
|
|
|
|
FROM alpine:latest
|
|
LABEL MAINTAINER="SliverHorn@sliver_horn@qq.com"
|
|
|
|
WORKDIR /go/src/gin-vue-admin
|
|
|
|
COPY --from=0 /go/src/gin-vue-admin/server ./
|
|
COPY --from=0 /go/src/gin-vue-admin/config.yaml ./
|
|
COPY --from=0 /go/src/gin-vue-admin/resource ./resource
|
|
|
|
EXPOSE 8888
|
|
|
|
ENTRYPOINT ./server
|