Skip to content

Commit

Permalink
fix(docker): bump the docker-deps group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the docker-deps group with 2 updates: php and nginx.


Updates `php` from 8.3.8-cli-alpine3.19 to 8.4.1-cli-alpine3.19

Updates `nginx` from 1.27.0-alpine-slim to 1.27.3-alpine-slim

---
updated-dependencies:
- dependency-name: php
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker-deps
- dependency-name: nginx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and stanislavbebej committed Dec 9, 2024
1 parent 9e4c614 commit 66b9210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder container

Check failure on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / scan

CKV_DOCKER_2: "Ensure that HEALTHCHECK instructions have been added to container images"

Check failure on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / scan

CKV_DOCKER_3: "Ensure that a user for the container has been created"
FROM php:8.3.8-cli-alpine3.19 AS builder
FROM php:8.4.1-cli-alpine3.19 AS builder

# Install build tools
RUN apk --no-cache add sqlite \
Expand All @@ -24,7 +24,7 @@ RUN mkdir /ejks \
RUN find /ejks -type f -name '*.html' | sed 's#/ejks#https://ejks.sk#g' | sort -u > /ejks/sitemap.txt

# Runtime container
FROM nginx:1.27.0-alpine-slim
FROM nginx:1.27.3-alpine-slim

# Replace default configuration
COPY nginx-default-server.conf /etc/nginx/conf.d/default.conf
Expand Down

0 comments on commit 66b9210

Please sign in to comment.