We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40f6dfe commit bd2c8ecCopy full SHA for bd2c8ec
translations/Dockerfile
@@ -27,9 +27,10 @@ RUN curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh |
27
28
# Install newer gettext version from source
29
RUN curl -L https://ftp.gnu.org/pub/gnu/gettext/gettext-${GETTEXT_VERSION}.tar.gz -o /tmp/gettext-${GETTEXT_VERSION}.tar.gz \
30
- && tar -xzf /tmp/gettext-${GETTEXT_VERSION}.tar.gz -C /tmp \
31
- && cd /tmp/gettext-${GETTEXT_VERSION} \
32
- && ./configure \
+ && tar -xzf /tmp/gettext-${GETTEXT_VERSION}.tar.gz -C /tmp
+
+RUN cd /tmp/gettext-${GETTEXT_VERSION} \
33
+ && ./configure --prefix=/usr --libexecdir=/usr/lib \
34
&& make \
35
&& make install \
36
&& rm -rf /tmp/gettext-${GETTEXT_VERSION}*
0 commit comments