Browse Source

Dockerfile

test1
Georg Spar 1 year ago
parent
commit
3ce85d9656
  1. 15
      Dockerfile

15
Dockerfile

@ -0,0 +1,15 @@
FROM node:18.16-alpine
ENV NODE_ENV=production
WORKDIR /app
RUN apk update && apk upgrade
RUN apk add git
COPY . .
RUN npm install
RUN npm run build
#EXPOSE 3000
#ENV NUXT_HOST=0.0.0.0
#ENV NUXT_PORT=3000
CMD ["npm", "start"]
Loading…
Cancel
Save