Files
bladerunner/packer/Dockerfile
Kyle Isom 660be935ef adding in bazel build
Trying to get Bazel to build containers.
2023-04-10 22:34:38 +00:00

14 lines
344 B
Docker

# Set up a packer image in Docker.
FROM ubuntu:22.04
LABEL org.opencontainers.image.authors=kyle@imap.cc
RUN apt-get update && apt-get -y install git curl sudo
RUN git clone https://git.wntrmute.dev/kyle/bladerunner
RUN bladerunner/tools/install-go.sh
ADD . packer
WORKDIR packer
RUN ./install-packer.sh
ENTRYPOINT ["/usr/bin/env", "bash"]