1
0
Fork 0
forked from 0x2E/fusion

make coolify happy

This commit is contained in:
Kim, Jimin 2025-05-24 11:16:39 +09:00
parent 34b3c33cb3
commit 5745c8123d
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -2,8 +2,15 @@
FROM node:23 AS fe
WORKDIR /src
RUN npm i -g pnpm
COPY .git .git/
COPY frontend ./frontend
# coolify can't build without this
RUN git config --global user.email "pompydev@proton.me"
RUN git config --global user.name "pompydev"
RUN git init
RUN git add .
RUN git commit -m "a"
COPY scripts.sh .
RUN ./scripts.sh build-frontend