adding in bazel build

Trying to get Bazel to build containers.
This commit is contained in:
2023-04-10 22:34:38 +00:00
parent 9f492fb42b
commit 660be935ef
9 changed files with 172 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
# Set up a packer image in Docker.
# Set up a container with the tooling installed.
FROM ubuntu:22.04
LABEL org.opencontainers.image.authors=kyle@imap.cc
RUN apt-get update && apt-get -y install git bash curl sudo
ADD . tools
RUN tools/install-dependencies.sh
RUN tools/install-go.sh
RUN tools/install-bazel.sh
ENTRYPOINT ["/usr/bin/env", "bash"]