Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
Docker deployment of the flask-online-store app.
What
docker-compose.yaml
for multi-container orchestrationpkg-resources==0.0.0
fromrequirements.txt
(see additional notes)Additional notes
I encountered this weird error when installing
pkg-resources==0.0.0
.Error log
ERROR: Could not find a version that satisfies the requirement pkg-resources==0.0.0 (from -r requirements.txt (line 27)) (from versions: none) ERROR: No matching distribution found for pkg-resources==0.0.0 (from -r requirements.txt (line 27))
I didn't know what it was but a quick google search told me it's just a bug resulting from Ubuntu providing wrong meta data to pip. I've removed it from
requirements.txt
for this reason but i can add it back if requested (Although this maybe kinda out of the scope of this PR).refs: #2
@DiptoChakrabarty Please let me know if i've missed something or if there are any other issues. Thanks 👍