first commit

This commit is contained in:
2025-11-23 16:13:58 +00:00
commit 4da47f5577
4 changed files with 101 additions and 0 deletions

15
dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM arm32v7/debian:bullseye-slim
ENV NOMAD_VERSION=1.8.2
RUN apt-get update && \
apt-get install -y curl unzip ca-certificates iproute2 && \
curl -o nomad.zip https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_arm.zip && \
unzip nomad.zip && \
chmod +x nomad && \
mv nomad /usr/local/bin/ && \
rm nomad.zip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/usr/local/bin/nomad"]