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

15 lines
205 B

1 year ago
FROM node:18.16-alpine
WORKDIR /app
1 year ago
RUN apk update && apk upgrade
RUN apk add git net-tools
1 year ago
COPY . .
1 year ago
RUN npm ci
1 year ago
RUN npm run build
EXPOSE 80
1 year ago
ENV NITRO_HOST=0.0.0.0
ENV NITRO_PORT=80
1 year ago
CMD ["npm", "start"]