Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
319 B
11 lines
319 B
FROM golang:1.12-alpine3.9 as builder |
|
WORKDIR /go/src/github.com/pelletier/go-toml |
|
COPY . . |
|
ENV CGO_ENABLED=0 |
|
ENV GOOS=linux |
|
RUN go install ./... |
|
|
|
FROM scratch |
|
COPY --from=builder /go/bin/tomll /usr/bin/tomll |
|
COPY --from=builder /go/bin/tomljson /usr/bin/tomljson |
|
COPY --from=builder /go/bin/jsontoml /usr/bin/jsontoml
|
|
|