alessandro trinca tornidor commited on
Commit
78e586f
·
1 Parent(s): 7d518e9

ci: fix the tailwindcss build command within the docker image, bump to 1.11.6 version

Browse files
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM registry.gitlab.com/aletrn/gis-prediction:1.11.5
2
 
3
  # Include global arg in this stage of the build
4
  ARG WORKDIR_ROOT="/var/task"
 
1
+ FROM registry.gitlab.com/aletrn/gis-prediction:1.11.6
2
 
3
  # Include global arg in this stage of the build
4
  ARG WORKDIR_ROOT="/var/task"
dockerfiles/dockerfile-samgis-base CHANGED
@@ -112,7 +112,7 @@ RUN echo "VITE__INDEX_URL:" ${VITE__INDEX_URL}
112
 
113
  RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm install --frozen-lockfile
114
  RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm build
115
- RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm tailwindcss -i /appnode/src/input.css -o /appnode/dist/output.css
116
  RUN if [ ! -d /appnode/dist ]; then echo "no dist folder" && exit 1; fi
117
 
118
 
 
112
 
113
  RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm install --frozen-lockfile
114
  RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm build
115
+ RUN --mount=type=cache,id=pnpm,target=/pnpm/store; pnpm dlx @tailwindcss/cli -i /appnode/src/input.css -o /appnode/dist/output.css
116
  RUN if [ ! -d /appnode/dist ]; then echo "no dist folder" && exit 1; fi
117
 
118
 
docs/Changelog.md CHANGED
@@ -1,5 +1,9 @@
1
  # Changelog
2
 
 
 
 
 
3
  ## Version 1.11.5
4
 
5
  - pin sphinx version < 8.2.0 to avoid a failure on docs build, see https://github.com/tox-dev/sphinx-autodoc-typehints/issues/523 (sphinx-autodoc-typehints 3.2.0 at the moment doesn't resolve this issue)
 
1
  # Changelog
2
 
3
+ ## Version 1.11.6
4
+
5
+ - fix the tailwindcss build command within the docker image
6
+
7
  ## Version 1.11.5
8
 
9
  - pin sphinx version < 8.2.0 to avoid a failure on docs build, see https://github.com/tox-dev/sphinx-autodoc-typehints/issues/523 (sphinx-autodoc-typehints 3.2.0 at the moment doesn't resolve this issue)
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [tool.poetry]
2
  name = "samgis"
3
- version = "1.11.5"
4
  description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
5
  authors = ["alessandro trinca tornidor <[email protected]>"]
6
  license = "MIT license"
@@ -9,7 +9,7 @@ package-mode = false
9
 
10
  [metadata]
11
  name = "samgis"
12
- version = "1.11.5"
13
 
14
  [tool.poetry.urls]
15
  Source = "https://github.com/trincadev/samgis-be"
 
1
  [tool.poetry]
2
  name = "samgis"
3
+ version = "1.11.6"
4
  description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
5
  authors = ["alessandro trinca tornidor <[email protected]>"]
6
  license = "MIT license"
 
9
 
10
  [metadata]
11
  name = "samgis"
12
+ version = "1.11.6"
13
 
14
  [tool.poetry.urls]
15
  Source = "https://github.com/trincadev/samgis-be"