blueprints.git

ref: master

asgard/Dockerfile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
FROM alpine
RUN apk add git plan9port go openssh-client
RUN ln -s /usr/lib/plan9/bin/mk /usr/local/bin/mk
WORKDIR /root
RUN mkdir .ssh
COPY ssh_key .ssh/id_ed25519
COPY known_hosts .ssh/known_hosts
COPY build.sh build.sh
RUN chmod 755 build.sh
ENTRYPOINT ["./build.sh"]