docker: fix workdir

This commit is contained in:
Egor Kovetskiy 2020-01-06 11:33:19 +03:00
parent 95f50c1a34
commit f52b060b64

View File

@ -1,6 +1,6 @@
FROM golang:latest
ENV GOPATH="/go/"
WORKDIR /go/src/mark
ENV GOPATH="/go"
WORKDIR /go/src/github.com/kovetskiy/mark
COPY / .
RUN make get
RUN make build