/ linux-liftinstall / Dockerfile
Dockerfile
1 FROM debian:buster 2 LABEL maintainer="yuzu" 3 4 # Create a user account yuzu (UID 1027) that the container will run as 5 RUN useradd -m -u 1027 -s /bin/bash yuzu && \ 6 apt-get update && apt-get -y full-upgrade && \ 7 apt-get install --no-install-recommends -y \ 8 apt-utils \ 9 ca-certificates \ 10 cargo \ 11 curl \ 12 gnupg \ 13 libssl-dev \ 14 libwebkit2gtk-4.0-dev \ 15 nodejs && \ 16 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg -o /tmp/pubkey.gpg && \ 17 apt-key add /tmp/pubkey.gpg && \ 18 echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \ 19 apt-get update && apt-get install --no-install-recommends -y \ 20 yarn && \ 21 apt-get clean autoclean && \ 22 apt-get autoremove --yes && \ 23 rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log 24 USER 1027