Compare commits
2 commits
600ee2eedc
...
c434a006b7
Author | SHA1 | Date | |
---|---|---|---|
c434a006b7 | |||
e24383f561 |
2 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM registry.opensuse.org/opensuse/leap:15.5
|
||||
FROM registry.opensuse.org/opensuse/leap:15.6
|
||||
|
||||
# Settting up User
|
||||
RUN zypper -n install docker sudo
|
||||
|
@ -12,6 +12,8 @@ RUN echo "runner ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/runner
|
|||
# Installing Dependencies
|
||||
RUN zypper -n install bash git wget curl zip unzip nodejs20
|
||||
|
||||
RUN /usr/bin/bash -c "echo Hello"
|
||||
|
||||
WORKDIR /home/runner
|
||||
|
||||
USER runner
|
10
images/actions/php/Dockerfile
Normal file
10
images/actions/php/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM git.euph.dev/actions/runner-basic:latest
|
||||
|
||||
#RUN sudo wget https://download.opensuse.org/repositories/devel:languages:php/openSUSE_Leap_$(grep -oP '(?<=^VERSION_ID=).+' /etc/os-release | tr -d '"')/devel:languages:php.repo
|
||||
#RUN sudo zypper addrepo "devel:languages:php.repo"
|
||||
RUN sudo zypper -n refs && sudo zypper -n refresh
|
||||
#RUN sudo zypper addrepo -f https://download.opensuse.org/repositories/devel:/languages:/php/openSUSE_Leap_15.5/ PHP-OpenSUSE
|
||||
#RUN sudo zypper -n refresh
|
||||
|
||||
RUN sudo zypper -n install php
|
||||
RUN php -v && exit 1
|
Loading…
Reference in a new issue