build-environments/linux-transifex/Dockerfile
liushuyu eb43e1ee86
linux-fresh: update base image to use Qt 5.15 ...
... other images replaced MAINTAINER with LABEL
2021-09-22 16:04:10 -06:00

13 lines
294 B
Docker

FROM alpine
LABEL 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/*
USER 1027