From 20d4f8b112f0b60eaf68782859a987bda4112dab Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Thu, 2 Jan 2025 13:13:04 -0600 Subject: [PATCH] Update aptly to 1.6.0 (#89) * Update aptly to 1.6.0 * Update build process --- aptly/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aptly/Dockerfile b/aptly/Dockerfile index b25fda5..0970270 100644 --- a/aptly/Dockerfile +++ b/aptly/Dockerfile @@ -1,8 +1,8 @@ FROM golang:1 as builder -RUN git clone --branch v1.5.0 https://github.com/aptly-dev/aptly.git && \ +RUN git clone --branch v1.6.0 https://github.com/aptly-dev/aptly.git && \ cd aptly && \ - make modules install + make build FROM ubuntu:22.04 @@ -10,4 +10,4 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y awscli curl git gpg jq wget && \ rm -rf /var/lib/apt/lists/* -COPY --from=builder /go/bin/aptly /usr/bin/aptly +COPY --from=builder /go/aptly/build/aptly /usr/bin/aptly