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

11 lines
254 B
Docker

# Set up a container with the tooling installed.
FROM ubuntu:22.04
LABEL org.opencontainers.image.authors=kyle@imap.cc
ADD . tools
RUN tools/install-dependencies.sh
RUN tools/install-go.sh
RUN tools/install-bazel.sh
ENTRYPOINT ["/usr/bin/env", "bash"]