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
232 B
Docker

FROM node:18-alpine
WORKDIR /src
COPY package*.json ./
COPY . .
RUN apk add bash
RUN npm install
ENV NITRO_HOST=0.0.0.0
ENV NITRO_PORT=5000
EXPOSE 5000
# ENTRYPOINT ["npm", "run", "build", "node", ".output/server/index.mjs"]