Skip to content

Commit d046dce

Browse files
authored
Merge pull request #1065 from crazy-max/undock-update
update undock to 0.12.0
2 parents b1a6006 + f887624 commit d046dce

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

__tests__/docker/install.test.itg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const tmpDir = () => fs.mkdtempSync(path.join(process.env.TEMP || os.tmpdir(), '
2929

3030
beforeAll(async () => {
3131
const undockInstall = new UndockInstall();
32-
const undockBinPath = await undockInstall.download('v0.10.0', true);
32+
const undockBinPath = await undockInstall.download('v0.12.0', true);
3333
await undockInstall.install(undockBinPath);
3434

3535
const regclientInstall = new RegclientInstall();

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG NODE_VERSION=24
1818
ARG DOCKER_VERSION=29.3
1919
ARG BUILDX_VERSION=0.33.0
2020
ARG COMPOSE_VERSION=5.1.1
21-
ARG UNDOCK_VERSION=0.11.0
21+
ARG UNDOCK_VERSION=0.12.0
2222
ARG REGCTL_VERSION=v0.11.2
2323
ARG COSIGN_VERSION=v3.0.5
2424

src/docker/assets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ provision:
260260
x86_64) arch=amd64;;
261261
aarch64) arch=arm64;;
262262
esac
263-
url="https://github.com/crazy-max/undock/releases/download/v0.10.0/undock_0.10.0_linux_$arch.tar.gz"
263+
url="https://github.com/crazy-max/undock/releases/download/v0.12.0/undock_0.12.0_linux_$arch.tar.gz"
264264
265265
wget "$url" -O /tmp/undock.tar.gz
266266
tar -C /usr/local/bin -xvf /tmp/undock.tar.gz

0 commit comments

Comments
 (0)