From b5f0407335c306dbd89d4816aed1e6090e4da85b Mon Sep 17 00:00:00 2001 From: FearlessTobi Date: Fri, 15 Oct 2021 00:22:26 +0200 Subject: [PATCH] linux-transifex: Remove user and maintainer directives This fixes the build failing because of the following reasons: 1. GitHub Actions uses its own user inside the container, so the container should not include the USER directive. 2. Newer Docker builder systems (BuilderX) will not accept the MAINTAINER directive. --- linux-transifex/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linux-transifex/Dockerfile b/linux-transifex/Dockerfile index 845213c..9ee6b6b 100644 --- a/linux-transifex/Dockerfile +++ b/linux-transifex/Dockerfile @@ -1,8 +1,6 @@ FROM debian:buster-slim -MAINTAINER yuzu +LABEL maintainer="yuzuemu" ENV DEBIAN_FRONTEND=noninteractive -RUN useradd -m -u 1027 -s /bin/bash yuzu RUN apt-get update && apt-get -y full-upgrade RUN apt-get install -y git p7zip-full libqt5opengl5-dev qtmultimedia5-dev qttools5-dev qttools5-dev-tools python3-pip cmake RUN pip3 install transifex-client -USER 1027