Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker): bump nginx from 1.27.0-alpine-slim to 1.27.2-alpine-slim #42

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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

# Install build tools
Expand All @@ -24,7 +24,7 @@
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.2-alpine-slim

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