Skip to content

Commit 9d53876

Browse files
committed
REMOVE COMMIT Install git within Dockerfile
I think this was because I first used installs from github with pip, this is likely not needed anymore
1 parent 365aa83 commit 9d53876

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/compose/production/app_postgres/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ RUN mkdir ${CONFIG_ROOT}
1010
COPY app/requirements/base.txt ${CONFIG_ROOT}/base.txt
1111
COPY app/requirements/production.txt ${CONFIG_ROOT}/production.txt
1212

13+
# Install gettext utilities for translations
14+
RUN apt-get update && \
15+
apt-get install -y --no-install-recommends gettext-base gettext git && \
16+
rm -rf /var/lib/apt/lists/*
1317

1418
RUN pip install --upgrade pip \
1519
&& pip install --no-cache-dir -r ${CONFIG_ROOT}/production.txt
1620

1721
WORKDIR ${APP_ROOT}
1822

19-
# Install gettext utilities for translations
20-
RUN apt-get update && \
21-
apt-get install -y --no-install-recommends gettext-base gettext && \
22-
rm -rf /var/lib/apt/lists/*
2323

2424
ADD app/ ${APP_ROOT}
2525

0 commit comments

Comments
 (0)