Create a Docker Image

In this section you will learn about how you can create a docker image of the project.

Here are the step by step instructions to make a docker image.

1. Install docker container in your machine.

2. Create a Dockerfile under the project file.

2. Build your image by running docker build -t reactify-docker . .

3. Verify that it’s working by running docker run -it --rm -p 5000:5000 --name reactify-docker reactify-docker

Check more details about it.

Last updated