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.
tempest.dev/Dockerfile

13 lines
151 B
Docker

from node:18
workdir /app
copy package.json .
copy package-lock.json .
run npm ci
copy . .
run npx next build
expose 3000
entrypoint npx next start