rsnext/examples/with-docker/README.md
Nghiệp 111d2df90c
[Examples] Optimize with-docker (#17116)
* Fix missing yarn.lock
* Add --frozen-lockfile flag to speed up install deps
* Make sure node_modules do not contains devDependencies
* Add --targe stage docker build
2020-09-21 04:09:37 +00:00

1.5 KiB

With Docker

This example shows how to set custom environment variables for your docker application at runtime.

The dockerfile is the simplest way to run Next.js app in docker, and the size of output image is 173MB. However, for an even smaller build, you can do multi-stage builds with dockerfile.multistage. The size of output image is 85MB.

You can check the Example Dockerfile for your own Node.js project section in mhart/alpine-node for more details.

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-docker with-docker-app
# or
yarn create next-app --example with-docker with-docker-app

Build it with docker:

# build
docker build -t next-app .
# or, use multi-stage builds to build a smaller docker image
docker build --target production -t next-app -f ./Dockerfile.multistage .

Alternatively you can add these commands as scripts to your package.json and simply run

yarn build-docker or yarn build-docker-multistage

Run the docker image:

docker run --rm -it \
  -p 3000:3000 \
  next-app

or use yarn build-docker-multistage