docker/tools: build script and Dockerfile work now

This commit is contained in:
2023-04-10 05:03:23 +00:00
parent 53f337c255
commit 9f492fb42b
2 changed files with 17 additions and 1 deletions

10
tools/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# 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 bash curl sudo
ADD . tools
RUN tools/install-go.sh
ENTRYPOINT ["/usr/bin/env", "bash"]