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

Update docker.io/nginx Docker tag to v1.27.2 #5102

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
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 api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Python builder #
##################

FROM docker.io/python:${API_PY_VERSION} AS builder

Check warning on line 10 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images (api)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/python:${API_PY_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 10 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images (api_nginx)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/python:${API_PY_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# Container optimizations
ENV PYTHONUNBUFFERED=1
Expand Down Expand Up @@ -41,7 +41,7 @@
# API #
#######

FROM docker.io/python:${API_PY_VERSION}-slim AS api

Check warning on line 44 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images (api)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/python:${API_PY_VERSION}-slim results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 44 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images (api_nginx)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/python:${API_PY_VERSION}-slim results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

LABEL org.opencontainers.image.source="https://github.com/WordPress/openverse"

Expand Down Expand Up @@ -121,7 +121,7 @@
# NGINX #
#########

FROM docker.io/nginx:1.26.0-alpine AS nginx
FROM docker.io/nginx:1.27.2-alpine AS nginx

LABEL org.opencontainers.image.source="https://github.com/WordPress/openverse"

Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.nginx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# NGINX #
#########

FROM docker.io/nginx:1.26.0-alpine AS nginx
FROM docker.io/nginx:1.27.2-alpine AS nginx

LABEL org.opencontainers.image.source="https://github.com/WordPress/openverse"

Expand Down
Loading