Updated Dependencies, Makefiles for build process, Docker Images for Front & Backend

This commit is contained in:
Felix Kaspar
2024-08-31 21:55:25 +02:00
parent 734c871666
commit f3697a18e3
13 changed files with 923 additions and 916 deletions

10
server-node/Makefile Normal file
View File

@@ -0,0 +1,10 @@
vite-build:
npx tsc
npx vite build
vite-dockerize:
make vite-build
bash -c "cp ../package-lock.json ./"
docker build . -t stirling-pdf-backend:latest
bash -c "rm ./package-lock.json"
docker image prune