update: dockerfile

This commit is contained in:
2026-01-26 11:29:44 +03:30
parent e12e66fb86
commit dfdf5ed1c7

View File

@@ -3,15 +3,12 @@ WORKDIR /app
COPY package*.json ./
run npm config set registry https://mirror-npm.runflare.com
RUN npm config set registry https://mirror-npm.runflare.com && \
npm install
COPY . .
ENV PORT=3000
EXPOSE 3000
CMD ["npm", "start"]