Skip to content

Commit

Permalink
Update to 1.5.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
the-maldridge committed May 10, 2023
1 parent 76d6e6b commit 5673124
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM debian:buster-slim
ARG nomad_version=1.5.1
ARG nomad_version=1.5.5
ARG cni_version=1.2.0
WORKDIR /
RUN apt-get update && \
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile.source
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1-buster AS build
ARG nomad_version=1.5.1
ARG nomad_version=1.5.5
ARG nomad_prs=
ARG nomad_origin=https://github.com/hashicorp/nomad
WORKDIR /build
Expand All @@ -8,8 +8,9 @@ RUN git clone -b v${nomad_version} ${nomad_origin} . && \
git config --global user.email "build@localhost" && \
git config --global user.name "Nomad Build" && \
for p in ${nomad_prs} ; do curl -L ${nomad_origin}/pull/$p.patch | git am - ; done && \
echo "Doing build..." && \
go build -o /nomad -tags ui .
echo "Doing build..." && \
go mod vendor && \
go build -o /nomad -tags ui .


FROM debian:buster-slim
Expand Down

0 comments on commit 5673124

Please sign in to comment.