diff --git a/.gitignore b/.gitignore index f2c511f..7d003d6 100644 --- a/.gitignore +++ b/.gitignore @@ -178,3 +178,4 @@ pyrightconfig.json custom_configs .python-version .vscode +TODO \ No newline at end of file diff --git a/CHANGELOG b/CHANGELOG index 4fed010..5918f7b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.1] - 2025-03-21 + +### Fixed +- Fixed issue in the `dockerfile_templates/conan.txt` which was braking the build command + ## [3.1.0] - 2025-03-14 ### Added diff --git a/pyproject.toml b/pyproject.toml index 010649c..cfb53f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "turludock" -version = "3.1.0" +version = "3.1.1" description = "Builds ROS docker images that support GUI with either X11 or Wayland." authors = [ "Athanasios ", diff --git a/turludock/assets/dockerfile_templates/conan.txt b/turludock/assets/dockerfile_templates/conan.txt index 45ddc0e..e528682 100644 --- a/turludock/assets/dockerfile_templates/conan.txt +++ b/turludock/assets/dockerfile_templates/conan.txt @@ -2,6 +2,6 @@ RUN apt-get update && apt-get install -y python3-pip && \ apt-get clean && rm -rf /var/lib/apt/lists/* -RUN pip install --user --no-cache-dir --break-system-packages --upgrade pip && \ - pip install --user --no-cache-dir --break-system-packages --ignore-installed PyYAML && \ - pip install --user --no-cache-dir --break-system-packages conan \ No newline at end of file +RUN pip install --no-cache-dir --break-system-packages --upgrade pip || pip install --no-cache-dir --upgrade pip && \ + pip install --no-cache-dir --break-system-packages --ignore-installed PyYAML && \ + pip install --no-cache-dir --break-system-packages conan \ No newline at end of file