Skip to content

Commit 094fb4c

Browse files
authored
Version bumps (#3)
* Version bumps * Bump LICENSE date * Copy LICENSE to container * Update workflow metadata
1 parent 1891d66 commit 094fb4c

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

.github/workflows/on-demand.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
with:
2323
dockerfile: Dockerfile
2424
docker:
25+
name: Docker Build
2526
needs: static-analysis
2627
runs-on: ubuntu-latest
2728
steps:

.github/workflows/pull-request.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
with:
2121
dockerfile: Dockerfile
2222
docker:
23+
name: Docker Build
2324
needs: static-analysis
2425
runs-on: ubuntu-latest
2526
steps:
@@ -35,7 +36,7 @@ jobs:
3536
name: Set up Docker Buildx
3637
uses: docker/setup-buildx-action@v3
3738
-
38-
name: Build and push
39+
name: Build
3940
uses: docker/build-push-action@v5
4041
with:
4142
context: .

.github/workflows/release-tag.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
docker:
10+
name: Docker Build
1011
runs-on: ubuntu-latest
1112
steps:
1213
-

Dockerfile

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
FROM alpine:3.18.4
1+
FROM alpine:3.19.1
22

33
RUN \
44
# Update and install system applications
55
apk add --update --no-cache \
6-
bind-tools=9.18.19-r0 \
7-
certbot=2.6.0-r0 \
8-
curl=8.4.0-r0 \
9-
libcap=2.69-r0 \
10-
lua-resty-core=0.1.26-r0 \
11-
nginx=1.24.0-r7 \
12-
nginx-mod-http-fancyindex=1.24.0-r7 \
13-
nginx-mod-http-headers-more=1.24.0-r7 \
14-
nginx-mod-http-lua=1.24.0-r7 \
15-
openssl=3.1.4-r1 \
16-
shadow=4.13-r4 \
17-
tini=0.19.0-r1 && \
6+
bind-tools=9.18.24-r1 \
7+
certbot=2.7.4-r0 \
8+
curl=8.5.0-r0 \
9+
libcap=2.69-r1 \
10+
lua-resty-core=0.1.27-r0 \
11+
nginx=1.24.0-r16 \
12+
nginx-mod-http-fancyindex=1.24.0-r16 \
13+
nginx-mod-http-headers-more=1.24.0-r16 \
14+
nginx-mod-http-lua=1.24.0-r16 \
15+
openssl=3.1.4-r6 \
16+
shadow=4.14.2-r0 \
17+
tini=0.19.0-r2 && \
1818
# Remove default NGINX vHosts and websites
1919
rm -f /etc/nginx/sites-enabled/default && \
2020
rm -f /etc/nginx/sites-available/default && \
@@ -42,6 +42,9 @@ RUN \
4242
groupmod -g 10001 nginx && \
4343
usermod -u 10000 nginx
4444

45+
# Copy LICENSE to container
46+
COPY LICENSE /LICENSE
47+
4548
# Copy NGINX global settings to container
4649
COPY nginx/nginx.conf /etc/nginx/templates/
4750
COPY nginx/general.conf /etc/nginx/templates/

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020-2023 Al Azif, https://github.com/Al-Azif/exploit-host-http
1+
Copyright (c) 2020-2024 Al Azif, https://github.com/Al-Azif/exploit-host-http
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)