Skip to content

Commit

Permalink
Merge pull request #10 from baloise/main
Browse files Browse the repository at this point in the history
Fix build error
  • Loading branch information
robbizbal authored Oct 30, 2024
2 parents bd42989 + b678698 commit a2758be
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ ENV OLLAMA_BASE_URL=http://localhost:11434 \
RUN apk add --no-cache --update \
python3 \
py3-pip \
gcc \
python3-dev \
make \
bash \
&& rm -rf ~/.cache/* /usr/local/share/man /tmp/*
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install: $(INSTALL_STAMP)

$(INSTALL_STAMP): pyproject.toml
@if [ -z $(POETRY) ]; then echo "Poetry could not be found. Please install it."; exit 2; fi
$(POETRY) install
$(POETRY) install --only main
touch $(INSTALL_STAMP)

# Clean target to remove temporary files and caches
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
# yo-yo-maskᴙ
A reversible anonymisation service for us all

# Setup development environment
## Build status
[![Docker](https://github.com/baloise/yo-yo-maskr/actions/workflows/docker-publish.yml/badge.svg?branch=release)](https://github.com/baloise/yo-yo-maskr/actions/workflows/docker-publish.yml)

## Setup development environment

```
./setup.sh
```
# Run
## Run

```
make run
```
# Trouble shooting
## Trouble shooting

```
echo -n 'db' | gnome-keyring-daemon --unlock
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ mypy = "^1"
setuptools = "^0"
gunicorn = "^0"
python-dateutil = "^2.9.0.post0"
ipykernel = "^6.29.5"
tqdm = "^4.66.6"
jupyter = "^1.1.1"

[tool.poetry.dev-dependencies]
pytest = "^6.0"
ruff = "^0.7"
ipykernel = "^6.29.5"
jupyter = "^1.1.1"

[tool.pytest.ini_options]
minversion = "6.0"
Expand Down

0 comments on commit a2758be

Please sign in to comment.