Files
friends/Dockerfile
Kroonk e4b04060e4
All checks were successful
Build & Push Friends Image to Gitea Registry / build-and-push (push) Successful in 11s
Fix: Add telegram.js to Dockerfile COPY command
2026-05-22 22:48:18 +02:00

17 lines
207 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY server.js telegram.js ./
COPY public ./public
ENV NODE_ENV=production
ENV PORT=38110
EXPOSE 38110
CMD ["npm", "start"]