Remove matchmaking config file from base image

This commit is contained in:
Joseph Holley
2019-02-11 01:22:23 -05:00
parent f1d261044b
commit 7733824c21

View File

@ -2,6 +2,8 @@
FROM golang:1.10.3 as builder
WORKDIR /go/src/github.com/GoogleCloudPlatform/open-match
COPY config config
RUN rm -f config/matchmaker_config.json
RUN rm -f config/matchmaker_config.yaml
COPY internal internal
WORKDIR /go/src/github.com/GoogleCloudPlatform/open-match/internal
RUN go get -d -v ...