Restore working version from 2026-02-19 00:41 (pre-surfeur edits)

This commit is contained in:
Floppyrj45
2026-02-19 11:49:36 +01:00
commit 1e60e0d58f
7 changed files with 6874 additions and 0 deletions

15
frontend.Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
# Dockerfile pour le Frontend Seismic
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm install --include=dev
RUN npm install react-plotly.js plotly.js-dist-min
COPY . .
# On expose le port interne 3000
EXPOSE 3000
CMD ["npm", "run", "dev", "--", "--host"]