From b9670759bd48a800c11043d7ebd54764c3e796d6 Mon Sep 17 00:00:00 2001 From: Alexander Veit <53857412+alexander-veit@users.noreply.github.com> Date: Fri, 14 Jun 2024 15:29:31 -0400 Subject: [PATCH] Fix docker version (#405) --- CHANGELOG.rst | 6 ++++++ awsf3-docker/Dockerfile | 4 +--- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c7597f68..7cc3482d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Change Log ========== +5.2.2 +===== + +* Fix docker version in awsf3 Dockerfile + + 5.2.1 ===== diff --git a/awsf3-docker/Dockerfile b/awsf3-docker/Dockerfile index fade4589..548b64a9 100755 --- a/awsf3-docker/Dockerfile +++ b/awsf3-docker/Dockerfile @@ -1,6 +1,4 @@ FROM ubuntu:20.04 -MAINTAINER Soo Lee (duplexa@gmail.com) - # general updates & installing necessary Linux components ENV DEBIAN_FRONTEND=noninteractive @@ -50,7 +48,7 @@ RUN echo \ $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null RUN apt-get update -RUN apt-get --assume-yes install docker-ce +RUN apt-get --assume-yes install docker-ce=5:24.0.7-1~ubuntu.20.04~focal # Singularity RUN ARCH="$(dpkg --print-architecture)" && \ diff --git a/pyproject.toml b/pyproject.toml index f0a9a2bf..92e77214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tibanna" -version = "5.2.1" +version = "5.2.2" description = "Tibanna runs portable pipelines (in CWL/WDL) on the AWS Cloud." authors = ["4DN-DCIC Team "] license = "MIT"