You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.3 KiB
55 lines
2.3 KiB
FROM ubuntu:22.04
|
|
|
|
RUN dpkg --add-architecture i386 \
|
|
#base image
|
|
&& apt-get update \
|
|
&& apt-get install -y ffmpeg wget unzip python3 python3-pip git curl \
|
|
#wine install
|
|
&& mkdir -pm755 /etc/apt/keyrings \
|
|
&& wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key \
|
|
&& wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources \
|
|
&& apt-get update && apt-get install -y winehq-stable \
|
|
#frontend install
|
|
&& curl -s https://deb.nodesource.com/setup_18.x | bash \
|
|
&& apt-get update && apt-get install -y nodejs nginx \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir /opt/win32-python && cd /opt/win32-python \
|
|
&& wget https://www.python.org/ftp/python/3.12.3/python-3.12.3-embed-win32.zip \
|
|
&& unzip python-3.12.3-embed-win32.zip \
|
|
&& rm python-3.12.3-embed-win32.zip \
|
|
&& echo "wine test open python" \
|
|
&& cd /opt/win32-python \
|
|
&& wine python.exe --version
|
|
|
|
RUN cd /tmp && wget -O go2rtc https://github.com/AlexxIT/go2rtc/releases/download/v1.9.4/go2rtc_linux_amd64 && chmod +x go2rtc
|
|
|
|
#install backend dependes
|
|
RUN python3 -m pip config --user set global.index https://nexus.pblr-nyk.pro/repository/pypi-all/pypi && \
|
|
python3 -m pip config --user set global.index-url https://nexus.pblr-nyk.pro/repository/pypi-all/simple && \
|
|
python3 -m pip config --user set global.trusted-host nexus.pblr-nyk.pro
|
|
RUN python3 -m pip install fastapi aiofiles uvicorn git+https://git.pblr-nyk.pro/mirror/python-dvr
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
#setup backend
|
|
COPY backend /app/backend
|
|
RUN cd backend && git clone https://git.pblr-nyk.pro/gsd/MiskaRisa264 && mv /opt/win32-python /app/backend/MiskaRisa264/python-win32 && echo "{}" >> config.json && mkdir /app/backend/go2rtc && mv /tmp/go2rtc /app/backend/go2rtc/
|
|
RUN cd backend && python3 config_parser.py --no-hide-check --err-check
|
|
|
|
#setup frontend
|
|
COPY frontend /app/frontend
|
|
RUN cd frontend/ang_dvrip \
|
|
&& npm install --reg https://nexus.pblr-nyk.pro/repository/npm/ \
|
|
&& npm run ng build \
|
|
&& rm -r /var/www/html \
|
|
&& mv dist/ang_dvrip /var/www/html
|
|
|
|
RUN rm /etc/nginx/sites-available/default
|
|
COPY nginx.conf /etc/nginx/sites-available/default
|
|
|
|
COPY entrypoint.sh /
|
|
EXPOSE 80
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|