Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-30 12:11:28 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-30 14:15:39 +0300
commit6d3fbda00511d640fee915d803897e6a2411c172 (patch)
treea23f95eb1848f976c5f5d6a0f512e01bd12e1495
parent1f05c10e40fedbc7f0a77b3ac0f899d820ce9315 (diff)
Install the newest transifex client version
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--translations/Dockerfile14
-rw-r--r--translations/Dockerfile-Apps2
2 files changed, 8 insertions, 8 deletions
diff --git a/translations/Dockerfile b/translations/Dockerfile
index c7152e8..870f439 100644
--- a/translations/Dockerfile
+++ b/translations/Dockerfile
@@ -10,22 +10,22 @@ RUN apt-get update -q && \
git \
gnupg \
make \
+ curl \
openssh-client \
+ ca-certificates \
php7.4-cli \
php7.4-json \
php7.4-xml \
- python3 \
- python3-pip \
- python3-setuptools \
- python3-wheel \
qttools5-dev-tools \
&& apt-get clean
+RUN update-ca-certificates
+
# Install Transifex client
-RUN pip3 install transifex-client
+RUN cd /root
+RUN curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
-# Add sym link for php & python
-RUN ln -s /usr/bin/python3 /usr/bin/python
+ENV PATH=${PATH}:/
RUN mkdir -p /app
diff --git a/translations/Dockerfile-Apps b/translations/Dockerfile-Apps
index e23f91a..880a71d 100644
--- a/translations/Dockerfile-Apps
+++ b/translations/Dockerfile-Apps
@@ -1,4 +1,4 @@
-FROM ghcr.io/nextcloud/continuous-integration-translations:latest
+FROM ghcr.io/nextcloud/continuous-integration-translations-new:latest
MAINTAINER Morris Jobke <hey@morrisjobke.de>