generated from ibm-developer-skills-network/aolwx-devops-capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
As a developer
I need to containerize my microservice using Docker
So that I can deploy it easily with all of its dependencies
Details and Assumptions
- Create a
Dockerfilefor repeatable builds - Use a
Python:3.9-slimimage as the base - It must install all of the Python requirements
- It should not run as
root - It should use the
gunicornwsgi server as an entry point
Acceptance Criteria
gherkin
Given the Docker image named accounts has been created
When I use `docker run accounts`
Then I should see the accounts service running in Docker