2023-04-10 22:34:38 +00:00
|
|
|
# Set up a container with the tooling installed.
|
2023-04-10 05:03:23 +00:00
|
|
|
FROM ubuntu:22.04
|
|
|
|
LABEL org.opencontainers.image.authors=kyle@imap.cc
|
|
|
|
|
|
|
|
ADD . tools
|
2023-04-10 22:34:38 +00:00
|
|
|
RUN tools/install-dependencies.sh
|
2023-04-10 05:03:23 +00:00
|
|
|
RUN tools/install-go.sh
|
2023-04-10 22:34:38 +00:00
|
|
|
RUN tools/install-bazel.sh
|
2023-04-10 05:03:23 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/env", "bash"]
|