1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/docker-playwright-jwm/Dockerfile

17 lines
392 B
Text
Raw Normal View History

2022-07-12 19:04:45 +09:00
FROM mcr.microsoft.com/playwright:jammy
ARG DEBIAN_FRONTEND=noninteractive
ARG TZ=Asia/Tokyo
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
jwm \
novnc \
supervisor \
x11vnc \
xterm \
&& rm -rf /var/lib/apt/lists/* \
&& npm install --global playwright
COPY supervisord.conf /etc/supervisor/supervisord.conf
EXPOSE 8080
ENV DISPLAY=:0
CMD ["supervisord"]