From 4c37fa43fa6323fdab61b7ca22a9bb396d5c1df7 Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Mon, 6 Nov 2023 23:20:16 -0600 Subject: [PATCH] Update to 1.6.3. --- Dockerfile | 4 ++-- Dockerfile.source | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe4b24f..b13bee0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:buster-slim -ARG nomad_version=1.5.5 -ARG cni_version=1.2.0 +ARG nomad_version=1.6.3 +ARG cni_version=1.3.0 WORKDIR / RUN apt-get update && \ apt-get -y install curl unzip iptables iproute2 && \ diff --git a/Dockerfile.source b/Dockerfile.source index 402e7cd..bc1f11e 100644 --- a/Dockerfile.source +++ b/Dockerfile.source @@ -1,5 +1,5 @@ -FROM golang:1-buster AS build -ARG nomad_version=1.5.5 +FROM golang:1.21-bookworm AS build +ARG nomad_version=1.6.3 ARG nomad_prs= ARG nomad_origin=https://github.com/hashicorp/nomad WORKDIR /build @@ -13,8 +13,8 @@ for p in ${nomad_prs} ; do curl -L ${nomad_origin}/pull/$p.patch | git am - ; do go build -o /nomad -tags ui . -FROM debian:buster-slim -ARG cni_version=1.2.0 +FROM debian:bookworm-slim +ARG cni_version=1.3.0 WORKDIR / COPY --from=build /nomad /usr/local/bin/nomad RUN apt-get update && \