Skip to content

Commit

Permalink
Merge pull request #220 from bahlo/arne/fix-docker
Browse files Browse the repository at this point in the history
Fix Docker image
  • Loading branch information
bahlo authored Jul 31, 2024
2 parents a43c8ce + d0addeb commit 35760e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ FROM python:$PYTHON_BASE
COPY --from=builder /project/.venv/ /project/.venv
ENV PATH="/project/.venv/bin:$PATH"
COPY src /project/src
CMD ["python", "src/__main__.py"]
WORKDIR /project/src
CMD ["python", "-m", "ing_ynab"]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ $ pdm install
$ pdm run start
```

Alternatively you can use the Docker image from `ghcr.io/bahlo/ing-ynab:latest`
or `ghcr.io/bahlo/ing-ynab:3.0.1`.

## Configuration

The configuration is done via environment variables:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ing-ynab"
version = "0.3.0"
version = "0.3.1"
description = "Import your ING Germany bank statements via FinTS into YNAB."
authors = [{ name = "Arne Bahlo", email = "[email protected]" }]
dependencies = [
Expand Down

0 comments on commit 35760e2

Please sign in to comment.