-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
Rebase generic off monolithic #112
Conversation
-----DO NOT MERGE UNTIL UPDATING DOCKERFILE TO LATEST------ This commit rebases the generic code off the monolithic image This allows the base image to be the more regularly accessed / edited image removing the minor map changes directly in this generic image Commits to lancachenet/monolithic:switcheroo will mimic this commit Also fixes #108
Dockerfile
Outdated
@@ -1,8 +1,9 @@ | |||
FROM lancachenet/ubuntu-nginx:latest | |||
MAINTAINER LanCache.Net Team <[email protected]> | |||
FROM lancachenet/monolithic:switcheroo |
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.
One option to make this more flexible:
ARG MONOLITHIC_TAG=master
FROM lancachenet/monolithic:${MONOLITHIC_TAG}
We could potentially leverage the current branch name with this (e.g. attempt to pull lancachenet/monolithic:$GITHUB_HEAD_REF
, if that works then pass --build-arg MONOLITHIC_TAG="${GITHUB_HEAD_REF}"
when building the image; this would allow automatically leveraging matched-name branches on monolithic
for pull requests on generic
).
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 like this, but don't want to make the change now
Co-authored-by: GotenXiao <[email protected]>
Disable build children as no dependencies
Rebase from monolithic:latest ready for final merge
Build was actually succesful in https://app.circleci.com/pipelines/github/lancachenet/generic/95/workflows/d25085b5-e98d-48c1-8fb7-05ea697f21a1/jobs/211 |
This commit rebases the generic code off the monolithic image
This allows the base image to be the more regularly accessed / edited image
removing the minor map changes directly in this generic image
Commits to lancachenet/monolithic:switcheroo will mimic this commit (lancachenet/monolithic#133)
Also fixes #108