mirror of
https://git.suyu.dev/suyu/build-environments.git
synced 2025-12-24 08:15:11 +01:00
8 lines
330 B
Docker
8 lines
330 B
Docker
FROM debian:buster-slim
|
|
MAINTAINER yuzu
|
|
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
|