mirror of
https://github.com/BluemediaGER/nginx-live.git
synced 2024-11-22 17:55:29 +01:00
Revert to default debian image
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
This commit is contained in:
parent
558f984f43
commit
099d432864
|
@ -1,5 +1,5 @@
|
||||||
# Base Image used to create this Image
|
# Base Image used to create this Image
|
||||||
FROM bitnami/minideb:bullseye
|
FROM debian:bookworm-slim
|
||||||
|
|
||||||
# Maintainer
|
# Maintainer
|
||||||
LABEL maintainer="hi@bluemedia.dev"
|
LABEL maintainer="hi@bluemedia.dev"
|
||||||
|
@ -11,7 +11,12 @@ ENV HLS_FRAGMENT_LENGTH 3
|
||||||
ENV HLS_PLAYLIST_LENGTH 20
|
ENV HLS_PLAYLIST_LENGTH 20
|
||||||
|
|
||||||
# Update and install packages
|
# Update and install packages
|
||||||
RUN install_packages nginx libnginx-mod-rtmp
|
RUN apt update -y && \
|
||||||
|
apt upgrade -y && \
|
||||||
|
apt autoremove -y && \
|
||||||
|
apt install nginx libnginx-mod-rtmp -y && \
|
||||||
|
apt clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
# Create nginx user
|
# Create nginx user
|
||||||
RUN useradd -s /bin/false nginx
|
RUN useradd -s /bin/false nginx
|
||||||
|
|
Loading…
Reference in a new issue