Bash update

This commit is contained in:
Andrei Condurachi 2020-11-27 12:11:33 +02:00
parent 18baac03aa
commit 901e11ea9a
1 changed files with 0 additions and 4 deletions

View File

@ -53,8 +53,6 @@ RUN apk add --no-cache \
RUN usermod -s /bin/bash root && bash RUN usermod -s /bin/bash root && bash
# Bash config updates for root user # Bash config updates for root user
RUN cd && bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)" RUN cd && bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
# Initialize bash updates
RUN source ~/.bashrc
# Configure to use php fpm and don't use /var/www to store everything (modules and logs) # Configure to use php fpm and don't use /var/www to store everything (modules and logs)
RUN \ RUN \
@ -118,8 +116,6 @@ USER apache
RUN bash RUN bash
# Bash config updates for apache user # Bash config updates for apache user
RUN cd && bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)" RUN cd && bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
# Initialize bash updates
RUN source ~/.bashrc
# Define Grav specific version of Grav or use latest stable # Define Grav specific version of Grav or use latest stable
ENV GRAV_VERSION latest ENV GRAV_VERSION latest