fix: remove &&

This commit is contained in:
Naramsim 2024-05-04 21:56:25 +02:00
parent 69a10a04c8
commit 66a381fa51

View file

@ -9,7 +9,7 @@ WORKDIR /code
ADD requirements.txt /code/
RUN apk add --no-cache postgresql-libs libstdc++
RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev postgresql-dev rust cargo
RUN python3 -m pip install -r requirements.txt --no-cache-dir && \
RUN python3 -m pip install -r requirements.txt --no-cache-dir
RUN apk --purge del .build-deps
ADD . /code/