Merge pull request #4 from rogsme/improve-dockerfile

Made building faster when developing
This commit is contained in:
Roger Gonzalez 2024-02-20 11:01:55 -03:00 committed by GitHub
commit 6434e2b995
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 . .