mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-06 15:59:49 +00:00
14 lines
201 B
Docker
14 lines
201 B
Docker
FROM golang:alpine
|
|
|
|
RUN mkdir -p /go/src/hupper
|
|
WORKDIR /go/src/hupper
|
|
|
|
COPY . /go/src/hupper/
|
|
|
|
ARG GOARCH
|
|
ARG GOOS
|
|
|
|
RUN go install
|
|
|
|
RUN [ -f /go/bin/*/hupper ] && mv /go/bin/*/hupper /go/bin/ || true
|