Téléverser les fichiers vers "/"

This commit is contained in:
2025-12-08 13:22:09 +00:00
commit a6e5d33ae5
3 changed files with 500 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:alpine
RUN npm install -g http-server
WORKDIR /app
COPY . /app
EXPOSE 8080
CMD ["http-server", "-p", "8080"]