You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
443 B
15 lines
443 B
#FROM registry.redhat.io/rhel8/httpd-24
|
|
FROM centos/httpd-24-centos7
|
|
|
|
# Add application sources to a directory where the assemble script expects them
|
|
# and set permissions so that the container runs without the root access
|
|
USER 0
|
|
ADD local.conf /etc/httpd/conf.d/
|
|
USER 1001
|
|
|
|
# Let the assemble script install the dependencies
|
|
#RUN /usr/libexec/s2i/assemble
|
|
|
|
# The run script uses standard ways to run the application
|
|
CMD /usr/libexec/s2i/run
|
|
|
|
|