mirror of
https://git.suyu.dev/suyu/build-environments
synced 2024-11-21 14:28:59 -07:00
liftinstall: Add initial liftinstall container
This commit is contained in:
parent
b237f34101
commit
a0e12a0d9a
1 changed files with 22 additions and 0 deletions
22
linux-liftinstall/Dockerfile
Normal file
22
linux-liftinstall/Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
FROM debian:stable
|
||||
MAINTAINER yuzu
|
||||
|
||||
# Create a user account yuzu (UID 1027) that the container will run as
|
||||
RUN apt-get update && apt-get -y full-upgrade && \
|
||||
apt-get install --no-install-recommends -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
apt-utils && \
|
||||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg -o /tmp/pubkey.gpg && \
|
||||
apt-key add /tmp/pubkey.gpg && \
|
||||
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
|
||||
apt-get update && apt-get install --no-install-recommends -y \
|
||||
libwebkit2gtk-4.0-dev \
|
||||
libssl-dev \
|
||||
cargo \
|
||||
nodejs \
|
||||
yarn && \
|
||||
apt-get clean autoclean && \
|
||||
apt-get autoremove --yes && \
|
||||
rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log
|
Loading…
Reference in a new issue