FROM ubuntu:22.04 RUN dpkg --add-architecture i386 \ && apt-get update \ && apt-get install -y ffmpeg wget unzip python3 python3-pip git curl \ && 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 \ && rm -rf /var/lib/apt/lists/* RUN curl -s https://deb.nodesource.com/setup_18.x | bash \ && apt-get update && apt-get install -y nodejs \ && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt-get install -y 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 RUN echo "wine test open python" \ && cd /opt/win32-python \ && wine python.exe --version #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://github.com/OpenIPC/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 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" ]