From b624c80915ed12def7b4133bd35a7e0bab2219d5 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Fri, 17 May 2024 15:48:48 +0100 Subject: [PATCH] Added Transifex CLI client to environment --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 710c436..f86bb34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,10 +56,13 @@ RUN apt-get install -y \ # Other libraries libsdl2-dev +# Download Transifex client +RUN curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash + # Download tools for building AppImages RUN wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage RUN wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage RUN wget https://github.com/linuxdeploy/linuxdeploy-plugin-checkrt/releases/download/continuous/linuxdeploy-plugin-checkrt-x86_64.sh RUN chmod a+x linuxdeploy-x86_64.AppImage RUN chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage -RUN chmod a+x linuxdeploy-plugin-checkrt-x86_64.sh \ No newline at end of file +RUN chmod a+x linuxdeploy-plugin-checkrt-x86_64.sh