mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-02 12:47:49 +00:00
This is the first cut of a InfraKit instance plugin which primarily allows one to manage Moby instances (though, other Linux's may work too). It's very rough on the edges and needs work and update to handle templates and better configuration etc. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
11 lines
402 B
Docker
11 lines
402 B
Docker
FROM mobylinux/go-compile:d2d25ac665b5148ad356d0eab3ff3762a68c633d@sha256:aab55d0c317460850e66a07dd94139cc11ea9e1c0bee88716a6a8c768740885f
|
|
|
|
ENV GOPATH=/go
|
|
ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
# The project sources
|
|
VOLUME ["/go/src/github.com/docker/infrakit.hyperkit"]
|
|
WORKDIR /go/src/github.com/docker/infrakit.hyperkit
|
|
|
|
ENTRYPOINT ["make"]
|