Initial commit - import depuis serveur de production

This commit is contained in:
manus-admin
2026-05-31 22:01:22 +02:00
commit f8bea08aa2
14 changed files with 1393 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
RUN npm install -g serve
COPY index.html ./
COPY images ./images/
EXPOSE 3000
CMD ["serve", "-s", ".", "-l", "3000"]