diff --git a/CHANGELOG.md b/CHANGELOG.md index 807f372..01f0ad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # HTMX-PATTERNS CHANGELOG +## 0.0.3 + +* fix docker `ENV=prod` + ## 0.0.2 * fix https diff --git a/Dockerfile b/Dockerfile index 2585672..e982675 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ EXPOSE 5000 RUN uv pip install --system --no-deps . ENV TZ=America/Chicago -ENV ENV=production +ENV ENV=prod # CMD ['htmx-patterns', 'api', 'run'] CMD htmx-patterns api run diff --git a/htmx_patterns/__about__.py b/htmx_patterns/__about__.py index 481166c..4f7f2ea 100644 --- a/htmx_patterns/__about__.py +++ b/htmx_patterns/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2024-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.0.2" +__version__ = "0.0.3" diff --git a/justfile b/justfile index 7d5fce5..5a88655 100644 --- a/justfile +++ b/justfile @@ -2,8 +2,8 @@ default: @just --list build-image: - podman build -t docker.io/waylonwalker/htmx-patterns-waylonwalker-com:0.0.2 . + podman build -t docker.io/waylonwalker/htmx-patterns-waylonwalker-com:0.0.3 . push-image: - podman push docker.io/waylonwalker/htmx-patterns-waylonwalker-com:0.0.2 + podman push docker.io/waylonwalker/htmx-patterns-waylonwalker-com:0.0.3