Fuchs / Dockerfile
Selndmr's picture
Upload 3 files
95aa494 verified
Raw
History Blame Contribute Delete
201 Bytes
FROM node:22
ENV TZ=Europe/Istanbul
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev --prefer-offline --no-audit --no-fund --legacy-peer-deps
COPY . .
EXPOSE 7860
CMD ["npm", "start"]