forked from Garfield96/docker-nginx-rtmp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
ARG NGINX_VERSION=1.25.0 | ||
ARG NGINX_VERSION=1.25.1 | ||
ARG NGINX_RTMP_VERSION=dev | ||
|
||
############################## | ||
# Build the NGINX-build image. | ||
FROM alpine:3.17 as build-nginx | ||
FROM alpine:3.18 as build-nginx | ||
ARG NGINX_VERSION | ||
ARG NGINX_RTMP_VERSION | ||
ARG MAKEFLAGS="-j4" | ||
|
@@ -60,7 +60,7 @@ RUN rm -rf /var/cache/* /tmp/* | |
|
||
########################## | ||
# Build the release image. | ||
FROM alpine:3.17 | ||
FROM alpine:3.18 | ||
LABEL MAINTAINER Thomas Lekanger <[email protected]> | ||
|
||
# Set default environment variables. | ||
|