mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 01:31:00 +00:00
23 lines
774 B
Docker
23 lines
774 B
Docker
FROM ubuntu:12.04
|
|
MAINTAINER Jonas Finnemann Jensen <jopsen@gmail.com>
|
|
|
|
RUN useradd -d /home/worker -s /bin/bash -m worker
|
|
WORKDIR /home/worker
|
|
|
|
# install non-build specific dependencies in a single layer
|
|
ADD system-setup.sh /tmp/system-setup.sh
|
|
RUN bash /tmp/system-setup.sh
|
|
|
|
# Set variable normally configured at login, by the shells parent process, these
|
|
# are taken from GNU su manual
|
|
ENV HOME /home/worker
|
|
ENV SHELL /bin/bash
|
|
ENV USER worker
|
|
ENV LOGNAME worker
|
|
ENV HOSTNAME taskcluster-worker
|
|
ENV LANG en_US.UTF-8
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
# Set a default command useful for debugging
|
|
CMD ["/bin/bash", "--login"]
|