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 FROM golang:latest
ENV GOPATH="/go/" ENV GOPATH="/go"
WORKDIR /go/src/mark WORKDIR /go/src/github.com/kovetskiy/mark
COPY / . COPY / .
RUN make get RUN make get
RUN make build RUN make build