initial commit

This commit is contained in:
fox
2026-06-24 14:25:32 +01:00
commit 9788479ae7
109 changed files with 8666 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:26.3.1-alpine3.24 as build
ARG VITE_API_URL
ENV VITE_API_URL=$VITE_API_URL
RUN mkdir -p /code
WORKDIR /code
ADD . /code
RUN npm install -g -s --no-progress corepack
RUN COREPACK_ENABLE_DOWNLOAD_PROMPT=0 /bin/sh -c "yarn -v"
RUN yarn install
RUN yarn run build
FROM httpd:2.4.68-alpine3.24
COPY --from=build /code/dist /usr/local/apache2/htdocs/