From dbf3cbd984e0d7b8deba081f7a1fbdedce0c844f Mon Sep 17 00:00:00 2001 From: Joung MyeongHee Date: Mon, 20 Nov 2023 17:17:16 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20shell=20=ED=8C=8C=EC=9D=BC=20=EB=B0=B0?= =?UTF-8?q?=ED=8F=AC=EC=9A=A9=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/rtmp-server/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/rtmp-server/Dockerfile b/server/rtmp-server/Dockerfile index 31ca7f9..30e26fc 100644 --- a/server/rtmp-server/Dockerfile +++ b/server/rtmp-server/Dockerfile @@ -5,16 +5,16 @@ RUN git clone https://github.com/arut/nginx-rtmp-module.git && \ git clone https://github.com/nginx/nginx.git RUN cd nginx && ./auto/configure --add-module=../nginx-rtmp-module && make && make install -COPY ./nginx.conf /usr/local/nginx/conf/nginx.conf -# COPY ./server/rtmp-server/nginx.conf /usr/local/nginx/conf/nginx.conf +#COPY ./nginx.conf /usr/local/nginx/conf/nginx.conf +COPY ./server/rtmp-server/nginx.conf /usr/local/nginx/conf/nginx.conf FROM alpine:3.13.4 as nginx RUN apk add --update pcre ffmpeg COPY --from=builder /usr/local/nginx /usr/local/nginx -COPY ./run.sh /usr/local/nginx/conf/run.sh -# COPY ./server/rtmp-server/run.sh /usr/local/nginx/conf/run.sh +#COPY ./run.sh /usr/local/nginx/conf/run.sh +COPY ./server/rtmp-server/run.sh /usr/local/nginx/conf/run.sh RUN chmod +x /usr/local/nginx/conf/run.sh EXPOSE 80 443 1935