mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-27 13:28:42 +00:00
20 lines
616 B
Docker
20 lines
616 B
Docker
FROM quay.io/mozilla/ubuntu:12.04
|
|
MAINTAINER Jonas Finnemann Jensen <jopsen@gmail.com>
|
|
|
|
# Run system setup script
|
|
ADD system-setup.sh /tmp/system-setup.sh
|
|
RUN ["/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
|
|
|
|
# Declare default working folder
|
|
WORKDIR /home/worker
|
|
|
|
# Set a default command useful for debugging
|
|
CMD ["/bin/bash", "--login"]
|