Okteivia / Dockerfile
Selndmr's picture
Update Dockerfile
cc6aa04 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"]