Files
Mike Hommey 9f8afe1a56 Bug 1804601 - Update webrender docker image to Debian 11. r=gfx-reviewers,gw
Also remove the openjdk hack from the Dockerfile, since openjdk hasn't
been installed since bug 1740358.

Differential Revision: https://phabricator.services.mozilla.com/D164181
2022-12-09 01:39:46 +00:00

10 lines
177 B
Docker

FROM debian:bullseye-20221205
COPY setup.sh /root
RUN cd /root && ./setup.sh
RUN useradd -d /home/worker -s /bin/bash -m worker
USER worker
WORKDIR /home/worker
CMD /bin/bash