Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ pyrightconfig.json
custom_configs
.python-version
.vscode
TODO
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions turludock/assets/dockerfile_templates/conan.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
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