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
10 lines
177 B
Docker
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
|