bnuuy/Dockerfile

11 lines
285 B
Docker
Raw Normal View History

2021-05-25 16:20:40 +00:00
FROM alpine:latest
RUN apk add x11vnc xvfb supervisor firefox \
&& addgroup bnuuy \
&& adduser -G bnuuy -s /bin/sh -D bnuuy \
&& rm -rf /apk /tmp/* /var/cache/apk/*
ADD etc /etc
2021-05-25 16:20:40 +00:00
WORKDIR /home/bnuuy
EXPOSE 5900 5901
USER bnuuy
CMD ["/usr/bin/supervisord","-c","/etc/supervisord.conf"]