Made building faster when developing

This commit is contained in:
Roger Gonzalez 2024-02-20 10:38:05 -03:00
parent 6595082d50
commit 2fb2efb076
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

@ -12,7 +12,9 @@ RUN apt-get update && \
rm -rf bw.zip
WORKDIR /bitwarden-to-keepass
COPY . .
COPY requirements.txt ./
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . .