We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Title: Containerize your microservice using Docker
As a developer I need to containerize my microservice using Docker So that I can deploy it easily with all of its dependencies
Dockerfile
Python:3.9-slim
root
gunicorn
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
docker run accounts
The text was updated successfully, but these errors were encountered:
omar-sarfraz
No branches or pull requests
Title: Containerize your microservice using Docker
As a developer
I need to containerize my microservice using Docker
So that I can deploy it easily with all of its dependencies
Assumptions
Dockerfile
for repeatable buildsPython:3.9-slim
image as the baseroot
gunicorn
wsgi server as an entry pointAcceptance Criteria
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
The text was updated successfully, but these errors were encountered: