cleaning structure

This commit is contained in:
Quality System Admin
2025-10-16 01:42:59 +03:00
parent e0ba349862
commit 50c791e242
469 changed files with 1016 additions and 29776 deletions

14
old code/tray/Dockerfile Executable file
View File

@@ -0,0 +1,14 @@
FROM openjdk:11 as build
RUN apt-get update
RUN apt-get install -y ant nsis makeself
COPY . /usr/src/tray
WORKDIR /usr/src/tray
RUN ant makeself
FROM openjdk:11-jre as install
RUN apt-get update
RUN apt-get install -y libglib2.0-bin
COPY --from=build /usr/src/tray/out/*.run /tmp
RUN find /tmp -iname "*.run" -exec {} \;
WORKDIR /opt/qz-tray
ENTRYPOINT ["/opt/qz-tray/qz-tray"]