bladerunner/packer/Dockerfile

12 lines
316 B
Docker
Raw Normal View History

2023-04-10 01:31:44 +00:00
# Set up a packer image in Docker.
FROM ubuntu:22.04
2023-04-10 03:05:28 +00:00
LABEL org.opencontainers.image.authors=kyle@imap.cc
2023-04-10 01:31:44 +00:00
2023-04-10 03:05:28 +00:00
ONBUILD RUN apt-get update && apt-get install git
ONBUILD RUN git clone https://git.wntrmute.dev/kyle/bladerunner
ONBUILD RUN bladerunner/tools/install-go.sh
ADD . packer
2023-04-10 01:31:44 +00:00
ENTRYPOINT ["/usr/bin/env", "bash"]