File tree Expand file tree Collapse file tree 4 files changed +114
-77
lines changed
Expand file tree Collapse file tree 4 files changed +114
-77
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ RUN apk --no-cache add \
1515 tk \
1616 zlib
1717
18+ WORKDIR /home
19+
1820RUN pip install --upgrade pip && \
1921 pip install poetry
2022
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments