This commit is contained in:
M1n-0
2026-06-02 16:53:19 +02:00
parent cc7e9da4d2
commit 5ff1a54a31
796 changed files with 64555 additions and 0 deletions

13
tp_wik_dps_02/dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:alpine
WORKDIR /app
COPY package*.json ./
RUN npm install express dotenv && adduser -S guh
COPY . .
USER guh
CMD ["node", "server.js"]