From 6deb17f8c788a61804614bb25837b9bc3980c2aa Mon Sep 17 00:00:00 2001 From: yahtoo Date: Sat, 20 Jul 2019 10:50:11 +0800 Subject: [PATCH] Modify Dockerfile expose ports (#338) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d500046..3cb63a2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Build Bytom in a stock Go builder container +# Build Vapor in a stock Go builder container FROM golang:1.12-alpine as builder RUN apk add --no-cache make git @@ -6,11 +6,11 @@ RUN apk add --no-cache make git ADD . /go/src/github.com/vapor RUN cd /go/src/github.com/vapor && make vapord && make vaporcli -# Pull Bytom into a second stage deploy alpine container +# Pull Vapor into a second stage deploy alpine container FROM alpine:latest RUN apk add --no-cache ca-certificates COPY --from=builder /go/src/github.com/vapor/cmd/vapord/vapord /usr/local/bin/ COPY --from=builder /go/src/github.com/vapor/cmd/vaporcli/vaporcli /usr/local/bin/ -EXPOSE 9889 56659 46658 +EXPOSE 9889 56656 56657 56658 -- 2.11.0