mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 23:39:08 +00:00
9 lines
112 B
Docker
9 lines
112 B
Docker
FROM golang:latest
|
|
|
|
WORKDIR /go/src/app
|
|
COPY . .
|
|
|
|
RUN go get -d -v ./...
|
|
RUN go install -v ./...
|
|
|
|
CMD ["server"] |