Skip to content

Commit 3d99adf

Browse files
committed
Add httpd image
1 parent bc16024 commit 3d99adf

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build-and-push-dev-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ on:
2828
required: false
2929
lang:
3030
description: List of languages to build
31-
default: 'gcc-toolset, golang, nginx, nodejs, php, python, redis, ruby, haproxy, kubectl, helm, ocne-tools'
31+
default: 'gcc-toolset, golang, nginx, nodejs, php, python, redis, ruby, haproxy, kubectl, helm, ocne-tools, httpd'
3232
required: false
3333

3434
# Default values for the builds triggered by the push event
3535
env:
3636
ol: 'oraclelinux7, oraclelinux8, oraclelinux9'
37-
lang: 'gcc-toolset, golang, nodejs, nginx, php, python, redis, ruby, haproxy, kubectl, helm, ocne-tools'
37+
lang: 'gcc-toolset, golang, nodejs, nginx, php, python, redis, ruby, haproxy, kubectl, helm, ocne-tools, httpd'
3838

3939
jobs:
4040
prepare:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM ghcr.io/oracle/oraclelinux:9
2+
3+
RUN dnf install -y httpd && \
4+
rm -rf /var/cache/dnf
5+
6+
CMD ["httpd", "-DFOREGROUND"]

0 commit comments

Comments
 (0)