Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
style: fix commands indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
bitterteriyaki committed Sep 20, 2023
1 parent 37eb136 commit f2f6a01
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions docker/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends \
bash \
brotli \
build-essential \
curl \
gettext \
git \
libpq-dev \
bash \
brotli \
build-essential \
curl \
gettext \
git \
libpq-dev \
# Installing Poetry:
&& curl -sSL 'https://install.python-poetry.org' | python - \
&& poetry --version \
Expand Down Expand Up @@ -76,8 +76,7 @@ RUN groupadd -g "${GID}" -r web \

COPY --chown=web:web ./poetry.lock ./pyproject.toml /app/

RUN --mount=type=cache,target="$POETRY_CACHE_DIR" \
echo "${DJANGO_ENV}" \
RUN --mount=type=cache,target="$POETRY_CACHE_DIR" echo "${DJANGO_ENV}" \
&& poetry version \
&& poetry run pip install --no-deps --upgrade pip \
&& poetry install \
Expand Down

0 comments on commit f2f6a01

Please sign in to comment.