We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365aa83 commit 9d53876Copy full SHA for 9d53876
1 file changed
app/compose/production/app_postgres/Dockerfile
@@ -10,16 +10,16 @@ RUN mkdir ${CONFIG_ROOT}
10
COPY app/requirements/base.txt ${CONFIG_ROOT}/base.txt
11
COPY app/requirements/production.txt ${CONFIG_ROOT}/production.txt
12
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/*
17
18
RUN pip install --upgrade pip \
19
&& pip install --no-cache-dir -r ${CONFIG_ROOT}/production.txt
20
21
WORKDIR ${APP_ROOT}
22
-# Install gettext utilities for translations
-RUN apt-get update && \
- apt-get install -y --no-install-recommends gettext-base gettext && \
- rm -rf /var/lib/apt/lists/*
23
24
ADD app/ ${APP_ROOT}
25
0 commit comments