Skip to content

Commit a2cb76f

Browse files
committed
feat: update pillow to version 11.2.1
1 parent 4a1f712 commit a2cb76f

File tree

4 files changed

+114
-77
lines changed

4 files changed

+114
-77
lines changed

docker/cas/Containerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ RUN apk --no-cache add \
1515
tk \
1616
zlib
1717

18+
WORKDIR /home
19+
1820
RUN pip install --upgrade pip && \
1921
pip install poetry
2022

docker/cas/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# CAS
2+
3+
The content addressable storage is realized with python by using sha1 as a hashing algorithm.
4+
5+
## Build
6+
7+
```bash
8+
docker build -f Containerfile -t funani-cas .
9+
```
10+
11+
## Update
12+
13+
This updates the contents of the `poetry.lock` file to the latest versions possible as specified inside the `pyproject.toml` file
14+
15+
```bash
16+
docker run -it --rm --entrypoint /bin/sh -v ./poetry.lock:/home/poetry.lock -v ./pyproject.toml:/home/pyproject.toml funani-cas
17+
18+
cd /home
19+
poetry update
20+
```
21+
22+
## Test
23+
24+
## Run

0 commit comments

Comments
 (0)