Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 544 Bytes

containerize_app.md

File metadata and controls

14 lines (12 loc) · 544 Bytes

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
  1. Write a Dockerfile you'll use for building an image of the application (you can use any base image you would like)
  2. Build an image using the Dockerfile you've just wrote
  3. Verify the image exists
  4. [Optional] Push the image you've just built to a registry
  5. Run the application
  6. Verify the app is running