mirror of
https://github.com/peterbourgon/runsvinit.git
synced 2024-12-16 14:57:04 +00:00
10 lines
244 B
Docker
10 lines
244 B
Docker
|
FROM golang:1.5.1
|
||
|
|
||
|
COPY ../../*.go /go/src/github.com/peterbourgon/runsvinit
|
||
|
RUN go install -v github.com/peterbourgon/runsvinit
|
||
|
RUN mv /go/bin/runsvinit /mount/
|
||
|
|
||
|
COPY zombie.c /
|
||
|
RUN cc -Wall -Werror -o /zombie /zombie.c
|
||
|
RUN mv /zombie /mount/
|