Skip to content

Commit 516177f

Browse files
authored
fix: pcre3
1 parent 79af9b7 commit 516177f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/dockerimage.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ jobs:
3636
- id: test
3737
name: Test
3838
run: |
39+
docker volume create usr-share-geoip
40+
docker run --rm --name geoipupdate -v usr-share-geoip:/usr/share/GeoIP -e GEOIPUPDATE_FREQUENCY=0 -e GEOIPUPDATE_ACCOUNT_ID='${{ secrets.GEOIPUPDATE_ACCOUNT_ID }}' -e GEOIPUPDATE_LICENSE_KEY='${{ secrets.GEOIPUPDATE_LICENSE_KEY }}' -e GEOIPUPDATE_EDITION_IDS='GeoLite2-City GeoLite2-Country' maxmindinc/geoipupdate
3941
docker run --rm --name nginx gokaygurcan/nginx nginx -V
40-
42+
4143
- id: login
4244
name: Login to Docker Hub
4345
uses: docker/login-action@v3

Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ FROM gokaygurcan/ubuntu:latest
178178
LABEL maintainer "Gökay Gürcan <[email protected]>"
179179

180180
COPY --from=build-nginx /etc/nginx /etc/nginx
181+
COPY --from=build-nginx /usr/lib /usr/lib
182+
COPY --from=build-nginx /usr/local/lib /usr/local/lib
181183
COPY --from=build-nginx /usr/local/nginx /usr/local/nginx
182184
COPY --from=build-nginx /var/log/nginx /var/log/nginx
183185
COPY --from=build-nginx /usr/sbin/nginx /usr/sbin/nginx

0 commit comments

Comments
 (0)