ansible skeleton, tweaking packer Docker build.

This commit is contained in:
2023-04-10 23:02:14 -07:00
parent 1fda2a7dd2
commit 3534b1274f
9 changed files with 102 additions and 3 deletions

View File

@@ -2,12 +2,14 @@
FROM ubuntu:22.04
LABEL org.opencontainers.image.authors=kyle@imap.cc
RUN apt-get update && apt-get -y install git curl sudo
RUN apt-get update && apt-get -y install git curl sudo xz-utils
RUN git clone https://git.wntrmute.dev/kyle/bladerunner
RUN bladerunner/tools/install-go.sh
ADD . packer
WORKDIR packer
VOLUME build
RUN ./install-packer.sh
WORKDIR build/packer-builder-arm
ENTRYPOINT ["/usr/bin/env", "bash"]