fix(tisbackup): 🐛 Dockerfile fix venv uv

This commit is contained in:
k3nny 2025-04-18 23:48:25 +02:00
parent 7b6ce02a93
commit 5c627f3a64
2 changed files with 7 additions and 0 deletions

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"conventionalCommits.scopes": [
"tisbackup"
]
}

View File

@ -5,6 +5,8 @@ WORKDIR /opt/tisbackup
COPY entrypoint.sh /entrypoint.sh
COPY . /opt/tisbackup
ENV DEBIAN_FRONTEND=noninteractive
ENV UV_PROJECT_ENVIRONMENT=/usr/local
RUN apt-get update && apt-get upgrade -y \
&& apt-get install --no-install-recommends -y rsync ssh cron \