linux-transifex: Use debian base image, add git dependency (#43)

This commit is contained in:
Tobias 2021-10-14 22:19:19 +02:00 committed by GitHub
parent e610cb1cec
commit c186616054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,8 @@
FROM alpine
FROM debian:buster-slim
MAINTAINER yuzu
RUN adduser -u 1027 -D -s /bin/bash yuzu && \
apk update && apk add build-base \
py3-pip \
cmake \
python3-dev \
qt5-qttools-dev \
qt5-qtmultimedia-dev && \
pip3 install transifex-client && \
rm -rf /var/cache/apk/*
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