Skip to content

Commit

Permalink
fix: remove &&
Browse files Browse the repository at this point in the history
  • Loading branch information
Naramsim committed May 4, 2024
1 parent 69a10a0 commit 66a381f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/docker/app/Dockerfile
Expand Up @@ -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/

Expand Down

0 comments on commit 66a381f

Please sign in to comment.