diff --git a/docker/dockerfile b/docker/dockerfile new file mode 100644 index 0000000..4fdb6b3 --- /dev/null +++ b/docker/dockerfile @@ -0,0 +1,13 @@ +from node:16 AS build +#RUN apk add git +RUN dpkg --add-architecture i386 && apt update && apt -y install wine32 +#RUN apt install -y wine +WORKDIR /app +RUN git clone https://git.gregbrzezinski.com/Skirda/SkirdaElectronLauncher.git #skipcache +WORKDIR /app/SkirdaElectronLauncher +RUN git checkout skirda-launcher +RUN npm install +#RUN npm run dist:linux +RUN npm run dist:win +RUN ls /app/SkirdaElectronLauncher/dist +#COPY --from=build /app/SkirdaElectronLauncher/dist/* ./dist