-
-
Notifications
You must be signed in to change notification settings - Fork 992
New issue
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
Implemented Docker multi-stage build #1819
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,8 @@ | ||
from .common import * # noqa | ||
|
||
DATABASES = { | ||
"default": { | ||
"ENGINE": os.environ.get("SQL_ENGINE"), | ||
"NAME": os.environ.get("SQL_DATABASE"), | ||
"USER": os.environ.get("SQL_USER"), | ||
"PASSWORD": os.environ.get("SQL_PASSWORD"), | ||
"HOST": os.environ.get("SQL_HOST"), | ||
"PORT": os.environ.get("SQL_PORT"), | ||
} | ||
} | ||
|
||
SECRET_KEY = os.environ.get("SECRET_KEY") | ||
|
||
SILENCED_SYSTEM_CHECKS = SILENCED_SYSTEM_CHECKS + [ | ||
"django_recaptcha.recaptcha_test_key_error" # Default test keys for development. | ||
] | ||
|
||
ALLOWED_HOSTS = [".localhost", "127.0.0.1", "www.127.0.0.1"] | ||
|
||
LOCALE_MIDDLEWARE_EXCLUDED_HOSTS = ["docs.djangoproject.localhost"] | ||
|
||
DEBUG = True | ||
THUMBNAIL_DEBUG = DEBUG | ||
|
||
CACHES = { | ||
"default": { | ||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache", | ||
"LOCATION": "trololololol", | ||
}, | ||
"docs-pages": { | ||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache", | ||
"LOCATION": "docs-pages", | ||
}, | ||
} | ||
|
||
CSRF_COOKIE_SECURE = False | ||
|
||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" | ||
|
||
MEDIA_ROOT = str(DATA_DIR.joinpath("media_root")) | ||
|
||
SESSION_COOKIE_SECURE = False | ||
|
||
STATIC_ROOT = str(DATA_DIR.joinpath("static_root")) | ||
|
||
# Docs settings | ||
DOCS_BUILD_ROOT = DATA_DIR.joinpath("djangodocs") | ||
from .dev import * # noqa | ||
|
||
# django-hosts settings | ||
if parent_host := SECRETS.get("parent_host"): | ||
PARENT_HOST = parent_host | ||
|
||
PARENT_HOST = "localhost:8000" | ||
|
||
# django-push settings | ||
|
||
PUSH_SSL_CALLBACK = False | ||
|
||
# Enable optional components | ||
|
||
if DEBUG: | ||
try: | ||
import debug_toolbar # NOQA | ||
except ImportError: | ||
pass | ||
else: | ||
INSTALLED_APPS.append("debug_toolbar") | ||
INTERNAL_IPS = ["127.0.0.1"] | ||
MIDDLEWARE.insert( | ||
MIDDLEWARE.index("django.middleware.common.CommonMiddleware") + 1, | ||
"debug_toolbar.middleware.DebugToolbarMiddleware", | ||
) | ||
MIDDLEWARE.insert( | ||
MIDDLEWARE.index("debug_toolbar.middleware.DebugToolbarMiddleware") + 1, | ||
"djangoproject.middleware.CORSMiddleware", | ||
) | ||
# debug-toolbar settings | ||
INTERNAL_IPS = SECRETS.get("internal_ips", ["127.0.0.1"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understand correctly, the initial layer for
djangoproject-www-prod
will still have these packages, so this won't actually reduce the size of the prod image. The purpose of removing the packages in the same layer as they are installed as that they don't end up as part of the layer.The usual way to work around this with a multi-stage build is to start fresh and copy out of the first layer only the needed files, rather than depending on it in full. In my opinion (others will certainly differ), since Python venvs aren't really self-contained (as in this situation, they depend on system libraries), this is often more trouble than its worth for Python images.
A couple alternative ideas:
-dev
packages only whenREQ_FILE
isrequirements/prod.txt
libpq-dev
always, which should fix the underlying issueThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch, thanks.
I don't think uninstalling other packages would work, as
tox
installspsycopg
from source, and I believe they are all build requirements. At least, purging different packages led to different errors in my tests.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, thanks. That makes sense. If
gcc
is needed too, my second suggestion certainly doesn't make sense :)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll revisit this tomorrow, but it should be doable via something like a Docker build arg (
KEEP_DEPENDENCIES
), and making the package uninstall conditional.