Skip to content

Commit

Permalink
Fix docker release cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
daya0576 committed Jan 29, 2025
1 parent 82be98d commit 8c9e9da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ RUN apt-get update \
curl \
ca-certificates
WORKDIR $PYSETUP_PATH
ADD https://astral.sh/uv/install.sh /uv-installer.sh
RUN sh /uv-installer.sh && rm /uv-installer.sh
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin/:$PATH"

COPY uv.lock pyproject.toml ./
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile.nobuildkit.arm32
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ ENV OPENSSL_LIB_DIR=/usr/lib/arm-linux-gnueabihf
ENV OPENSSL_INCLUDE_DIR=/usr/include/arm-linux-gnueabihf/openssl

WORKDIR $PYSETUP_PATH
ADD https://astral.sh/uv/install.sh /uv-installer.sh
RUN sh /uv-installer.sh && rm /uv-installer.sh
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin/:$PATH"

COPY uv.lock pyproject.toml ./
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ Open page `/gui/order` to change the order of habits.
## REST APIs
[Beaver Habit Tracker API How‐to Guide](https://github.com/daya0576/beaverhabits/wiki/Beaver-Habit-Tracker-API-How%E2%80%90to-Guide)

## Daily Notes
Press and hold to add a note or description for the day.

# Future Plans

1. Quantitative metrics
Expand Down

0 comments on commit 8c9e9da

Please sign in to comment.