From 8aeadefaed215ac63c1e178ac78bdd3d93044f8e Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Wed, 9 Apr 2025 21:03:49 +0200 Subject: [PATCH] Delete whitebophir_application_dockerfile --- whitebophir_application_dockerfile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 whitebophir_application_dockerfile diff --git a/whitebophir_application_dockerfile b/whitebophir_application_dockerfile deleted file mode 100644 index b7d6d0a..0000000 --- a/whitebophir_application_dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -ARG NODE_IMAGE_VERSION=23-alpine -FROM node:${NODE_IMAGE_VERSION} - -ARG VERSION - -WORKDIR /opt/app - -RUN chown -R node:node /opt/app - -# Allow node to bind to port 80 -RUN apk update && apk add libcap - -USER node - -RUN wget https://github.com/lovasoa/whitebophir/archive/refs/tags/v${VERSION}.tar.gz -O artifact.tar.gz \ - && tar --strip-components=1 -xvzf artifact.tar.gz \ - && rm artifact.tar.gz - -RUN wget https://github.com/H2-invent/materialWhitebophir/archive/master.tar.gz -O artifact.tar.gz \ - && tar --strip-components=1 -xvzf artifact.tar.gz \ - && mv fonts client-data/fonts/ \ - && mv css/board.css client-data/board.css \ - && rm artifact.tar.gz - -RUN npm ci --production - -EXPOSE 3000 - -CMD ["node", "server/server.js"] -- 2.39.5