This commit is contained in:
Simon Gruber
2026-05-11 07:59:46 +02:00
commit 8615e8b78b
3 changed files with 116 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM node:20-slim
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --production
COPY . .
ENV PORT=8080
ENV HOST=0.0.0.0
ENV ACCESS_SECRET=gif
EXPOSE 8080
CMD ["node", "index.js"]