temp
Some checks failed
ci/woodpecker/manual/build Pipeline failed

This commit is contained in:
Ruben Momoa
2024-08-20 14:21:31 +02:00
parent efbbad801c
commit 5661689b2b

View File

@@ -11,13 +11,19 @@ ARG COMPOSER_VERSION=''
ENV NVM_DIR="/home/$USERNAME/.nvm" ENV NVM_DIR="/home/$USERNAME/.nvm"
ENV DEBIAN_FRONTEND="noninteractive" ARG DEBIAN_FRONTEND="noninteractive"
COPY start-container.sh /usr/local/bin/start-container COPY start-container.sh /usr/local/bin/start-container
RUN echo ${DEBIAN_FRONTEND}
RUN echo ${USERNAME}
RUN echo ${USER_UID}
RUN echo $DEBIAN_FRONTEND
RUN echo $USERNAME
RUN echo $USER_UID
RUN apt-get -y update RUN apt-get -y update
RUN apt-get install -y curl git 7zip php php-xml php-curl php-xml php-mbstring php-mysql php-gd RUN apt-get install -y curl git 7zip php php-xml php-curl php-xml php-mbstring php-mysql php-gd
RUN useradd --create-home --uid=$USER_UID $USERNAME RUN useradd --create-home --uid=${USER_UID} ${USERNAME}
RUN chmod +x /usr/local/bin/start-container RUN chmod +x /usr/local/bin/start-container
RUN echo "install composer" RUN echo "install composer"
RUN curl -o composer-setup.php https://getcomposer.org/installer RUN curl -o composer-setup.php https://getcomposer.org/installer