mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-05 08:09:38 +00:00
8 lines
119 B
Docker
8 lines
119 B
Docker
# Docker image for building the Go app
|
|
FROM golang:latest
|
|
|
|
WORKDIR /app
|
|
ADD . /app
|
|
|
|
RUN GO111MODULE=on go mod download
|