51ecb4ff77
Also, fixed some minor styling issues in random_question.py script.
15 lines
544 B
Markdown
15 lines
544 B
Markdown
## Containerize an Application
|
|
|
|
1. Clone an open source project you would like to containerize. A couple of suggestions:
|
|
|
|
```
|
|
https://github.com/bregman-arie/node-hello-world
|
|
https://github.com/bregman-arie/flask-hello-world
|
|
```
|
|
2. Write a Dockerfile you'll use for building an image of the application (you can use any base image you would like)
|
|
3. Build an image using the Dockerfile you've just wrote
|
|
4. Verify the image exists
|
|
5. [Optional] Push the image you've just built to a registry
|
|
6. Run the application
|
|
7. Verify the app is running
|