12 lines
415 B
Docker
12 lines
415 B
Docker
FROM alpine:latest
|
|
RUN apk add xorg-server xf86-input-libinput eudev xspice supervisor firefox pulseaudio pulseaudio-alsa alsa-plugins-pulse\
|
|
&& addgroup bnuuy \
|
|
&& adduser -G bnuuy -s /bin/sh -D bnuuy \
|
|
&& rm -rf /apk /tmp/* /var/cache/apk/*
|
|
ADD etc /etc
|
|
WORKDIR /home/bnuuy
|
|
ADD mozilla .mozilla/
|
|
RUN chown -R bnuuy:bnuuy .mozilla/
|
|
EXPOSE 5900
|
|
USER bnuuy
|
|
CMD ["/usr/bin/supervisord","-c","/etc/supervisord.conf"]
|