games-store-back/Dockerfile-host

16 lines
172 B
Plaintext

FROM node:lts-buster
ENV DB_URL mongodb://localhost:27017/StoreManager
WORKDIR /myapp
ENV PORT 3000
COPY . .
EXPOSE 3000
RUN npm install
ENTRYPOINT ["npm", "start"]