* linux-flatpak: slim down the image * meta: conform to new Dockerfile standard * meta: use regular user as possible
7 lines
219 B
Docker
7 lines
219 B
Docker
FROM alpine
|
|
LABEL maintainer="citraemu"
|
|
RUN adduser -u 1000 -D -s /bin/bash citra
|
|
RUN apk update && apk add build-base cmake python3-dev qt5-qttools-dev qt5-qtmultimedia-dev
|
|
RUN pip3 install transifex-client
|
|
USER citra
|