Merge remote-tracking branch 'origin/main'

This commit is contained in:
toine 2025-10-04 17:48:33 +02:00
commit 618b740588
4 changed files with 64 additions and 0 deletions

8
frontend/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
from node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
#RUN npm run build
EXPOSE 3001
CMD ["npm", "run", "start", "--", "-p", "3001"]