From 5e9aee88bca254913f0ae713e2f3972f1e3d0ded Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Sat, 9 Dec 2023 23:56:38 +0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 558ce76..aff0de3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,13 +2,10 @@ FROM ubuntu:20.04 LABEL maintainer="ovsyannikov.alexey95@gmail.com" -SHELL ["/bin/bash", "-c"] - -USER root +RUN mv /bin/sh /bin/sh.old && ln -s /bin/bash /bin/sh ENV TZ=Etc/GMT RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone -RUN mv /bin/sh /bin/sh.old && ln -s /bin/bash /bin/sh RUN apt update && apt -y install wget gnupg2 zip unzip curl sudo git software-properties-common pass axel RUN mkdir -p /var/jenkins_home/jenkins && cd /var/jenkins_home/ &&\