diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /security/nss/automation/taskcluster/docker-ecckiila/Dockerfile | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/nss/automation/taskcluster/docker-ecckiila/Dockerfile')
-rw-r--r-- | security/nss/automation/taskcluster/docker-ecckiila/Dockerfile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/security/nss/automation/taskcluster/docker-ecckiila/Dockerfile b/security/nss/automation/taskcluster/docker-ecckiila/Dockerfile new file mode 100644 index 0000000000..f51b775822 --- /dev/null +++ b/security/nss/automation/taskcluster/docker-ecckiila/Dockerfile @@ -0,0 +1,50 @@ +# Minimal image with clang-format 3.9. +FROM ubuntu:bionic-20221215 +LABEL maintainer="iaroslav.gridin@tuni.fi" + +# for new clang/llvm +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + ca-certificates \ + locales \ + cmake \ + build-essential \ + git \ + clang-10 \ + mercurial \ + unifdef \ + python3-mako \ + libgmp-dev \ + jq \ + python3-setuptools \ + python3-pip \ + python3-dev \ + clang-format-10 \ + && rm -rf /var/lib/apt/lists/* \ + && apt-get autoremove -y && apt-get clean -y + +RUN pip3 install fastecdsa + +ENV SHELL /bin/bash +ENV USER worker +ENV LOGNAME $USER +ENV HOME /home/$USER +ENV HOSTNAME taskcluster-worker +ENV LANG en_US.UTF-8 +ENV LC_ALL $LANG +ENV HOST localhost +ENV DOMSUF localdomain + +RUN locale-gen $LANG \ + && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales + +RUN useradd -d $HOME -s $SHELL -m $USER +WORKDIR $HOME + +ADD bin $HOME/bin +RUN chmod +x $HOME/bin/* + +USER $USER + +# Set a default command for debugging. +CMD ["/bin/bash", "--login"] |