mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-28 21:59:14 +00:00
Compare commits
3 Commits
0.6.10
...
73d6bd32db
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73d6bd32db | ||
|
|
6b2c19778b | ||
|
|
355fa5cfb6 |
@@ -1,4 +1,12 @@
|
||||
|
||||
## 0.6.11 (2025/02/23)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Add workdir to dockerfile last stage. ([355fa5cf](https://github.com/elisiariocouto/leggen/commit/355fa5cfb6ccc4ca225d921cdc2ad77d6bb9b2e6))
|
||||
|
||||
|
||||
|
||||
## 0.6.10 (2025/01/14)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
||||
COPY . /app
|
||||
|
||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||
uv sync --frozen --no-editable
|
||||
uv sync --frozen --no-editable --no-group dev
|
||||
|
||||
FROM python:3.13-alpine
|
||||
|
||||
@@ -22,8 +22,9 @@ LABEL org.opencontainers.image.title="leggen"
|
||||
LABEL org.opencontainers.image.description="An Open Banking CLI"
|
||||
LABEL org.opencontainers.image.url="https://github.com/elisiariocouto/leggen"
|
||||
|
||||
# Copy the environment, but not the source code
|
||||
WORKDIR /app
|
||||
ENV PATH="/app/.venv/bin:$PATH"
|
||||
|
||||
COPY --from=builder --chown=app:app /app/.venv /app/.venv
|
||||
|
||||
# Run the application
|
||||
ENTRYPOINT ["/app/.venv/bin/leggen"]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import sys
|
||||
import tomllib
|
||||
|
||||
import click
|
||||
import tomllib
|
||||
|
||||
from leggen.utils.text import error
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "leggen"
|
||||
version = "0.6.10"
|
||||
version = "0.6.11"
|
||||
description = "An Open Banking CLI"
|
||||
authors = [{ name = "Elisiário Couto", email = "elisiario@couto.io" }]
|
||||
requires-python = "~=3.12"
|
||||
|
||||
Reference in New Issue
Block a user