You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
202 B
Docker

FROM node:18
RUN mkdir /todo
WORKDIR /todo
COPY package*.json ./
RUN npm i -g npm
RUN npm ci
COPY . .
ENV HOST 0.0.0.0
EXPOSE 3000
RUN npm run build
ENTRYPOINT ["node", ".output/server/index.mjs"]