compose.yml für dockge dazu

This commit is contained in:
rxf
2026-03-11 11:58:49 +01:00
parent 2739d478f6
commit e01ab276b6
10 changed files with 2078 additions and 1301 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:20-alpine
WORKDIR /opt/app
RUN apk add --no-cache tzdata
ENV TZ=Europe/Berlin
ENV NODE_ENV=production
COPY package*.json ./
RUN npm ci --omit=dev
COPY . .
EXPOSE 3011
CMD ["npm", "start"]