a7c218cda6
New client uses new API. Same great name, but in go instead of python
8 lines
593 B
Docker
8 lines
593 B
Docker
FROM debian:bullseye-slim
|
|
LABEL maintainer="yuzuemu"
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
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 libavcodec-dev libavutil-dev libsdl2-dev libswscale-dev liblz4-dev libopus-dev \
|
|
libssl-dev libtool libusb-1.0-0-dev glslang-tools curl zip unzip
|
|
RUN curl -O -L https://github.com/transifex/cli/releases/latest/download/tx-linux-amd64.tar.gz && tar xf tx-linux-amd64.tar.gz tx && mv tx /usr/bin/tx && rm tx-linux-amd64.tar.gz
|