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.
 
 
 
 
 

14 lines
207 B

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