You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running poetry build, tar.gz/whl packages are generated. For deploying an application to a container environment, is it preferable to use these types of packages or to deploy using the source code? Which is the most appropriate choice?
If using a tar.gz package, the CI/CD process can be as follows:
Package and compile:
poetry build
Copy the project package to the image in the Dockerfile:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
When running
poetry build, tar.gz/whl packages are generated. For deploying an application to a container environment, is it preferable to use these types of packages or to deploy using the source code? Which is the most appropriate choice?If using a tar.gz package, the CI/CD process can be as follows:
ADD dist/app.tar.gz /appBeta Was this translation helpful? Give feedback.
All reactions