mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Add test Dockerfile for Rocky Linux with Nginx installation
This commit is contained in:
parent
75cf8d7863
commit
d479e944cc
1 changed files with 10 additions and 0 deletions
10
tests/linux/Dockerfile-rockylinux
Normal file
10
tests/linux/Dockerfile-rockylinux
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
FROM rockylinux:9.3@sha256:c944604c0c759f5d164ffbdf0bbab2fac582b739938937403c067ab634a0518a
|
||||
|
||||
ENV NGINX_VERSION 1.24.0
|
||||
|
||||
COPY src/linux/nginx.repo /etc/yum.repos.d/nginx.repo
|
||||
|
||||
RUN dnf install epel-release php-fpm curl yum-utils -y && \
|
||||
dnf install nginx-${NGINX_VERSION} -y
|
||||
|
||||
COPY ./package-rockylinux/*.rpm /opt
|
||||
Loading…
Reference in a new issue