This commit is contained in:
Tristan Andrus 2025-03-25 23:12:59 -06:00
parent 4035b2bd05
commit 66b2faac7c
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ WORKDIR /app
COPY requirements.txt ./ COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN apk get rsync RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y rsync
COPY . ./ COPY . ./