skip to Main Content

run nuxt3 with docker

I build my Nuxt3 Applcation with this command which generates everything in a Folder .output: npm run build This is the DockerFile that I'm using to build the docker file: FROM node:17-alpine3.14 ADD .output /webapp/.output EXPOSE 3000 WORKDIR /webapp/.output ENTRYPOINT…

VIEW QUESTION
Back To Top
Search