-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add possibility to build images from "dockerfiles" folder with '--no-cache' option #14213
Conversation
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
dockerfiles/e2e/build.sh
Outdated
@@ -20,7 +20,7 @@ fi | |||
echo "Copying source code ${E2E_DIR} --> ${LOCAL_E2E_DIR}" | |||
cp -r "${E2E_DIR}" "${LOCAL_E2E_DIR}" | |||
|
|||
init --name:e2e "$@" | |||
init --name:e2e --no-cache "$@" |
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 think there is something wrong here. Why no-cache should be mandatory if not given in build args ?
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.
@benoitf If I understand you correctly, you mean common "build.sh". But this is not common "build.sh", this is "build.sh" of the e2e tests image, and for this image, we exactly need "--no-cache" option by default.
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.
There is something wrong in the Dockerfile if it should be default. I'm -1
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.
@benoitf The thing is, that we are installing latest chrome from official google chrome repo in the image (here), but as the dockerfile is not changing and the build is happening everytime on the same machine, cache is used and we are stuck with old version of browser.
I'm not aware of any other way of solving this. If you have better idea how to solve this, we're all ears!
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.
Even in official docker best practices is this section in one of the examples:
# Install tools required to build the project
# We will need to run `docker build --no-cache .` to update those dependencies
RUN apk add --no-cache git
RUN go get github.com/golang/dep/cmd/dep
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.
@rhopp
to sum up: you want to invalidate the cache only if chome is updated
The approach for this is to use an ADD instruction to a link that is updated when google chrome is updated
Then you should (maybe link is not correct) use instruction like
# invalidate cache if updated
ADD http://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/filelists.xml.gz /tmp/filelists.xml.gz
before the yum install instructions
so it means that if the google chrome is not updated then we keep the layers, if google chrome is updated then layers are automatically invalidated
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.
This is what we're doing in some Dockerfile to only recompile a dependency if github project has new commits since the last time we ran docker build
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.
Sounds good. Will try that! Thanks!
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has failed:
|
Results of automated E2E tests of Eclipse Che Multiuser on OCP: |
Signed-off-by: Ihor Okhrimenko <[email protected]>
Signed-off-by: Ihor Okhrimenko <[email protected]>
Signed-off-by: Ihor Okhrimenko <[email protected]>
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
Results of automated E2E tests of Eclipse Che Multiuser on OCP: |
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
E2E tests of Eclipse Che Multiuser on OCP has been successful:
|
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 thought we decided to scratch the --no-cache
option from build.include
and implement some logic into dockerfile (based on Florent's suggestion). What's the status of that?
Signed-off-by: Ihor Okhrimenko <[email protected]>
Signed-off-by: Ihor Okhrimenko <[email protected]>
Signed-off-by: Ihor Okhrimenko <[email protected]>
dockerfiles/e2e/README.md
Outdated
@@ -30,11 +30,11 @@ If you want to gather screenshots of fallen tests, you have to mount a volume to | |||
a command: | |||
|
|||
``` | |||
docker run --shm-size=256m -v /full/path/to/your/folder:/root/e2e/report:Z -e THEIA_SELENIUM_BASE_URL=$URL eclipse/che-e2e:nightly | |||
docker run --shm-size=256m -v /full/path/to/your/folder:/root/e2e/report -e THEIA_SELENIUM_BASE_URL=$URL eclipse/che-e2e:nightly |
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.
Why did you removed the :Z
from here?
Signed-off-by: Ihor Okhrimenko <[email protected]>
E2E tests of Eclipse Che Multiuser on OCP has been successful:
|
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
IMHO, it makes sense to get rid of "--no-cache" option from dockerfiles/build.include, as Radim suggested above. |
Signed-off-by: Ihor Okhrimenko <[email protected]>
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.
Looks good.
E2E Happy path tests of Eclipse Che Single User on K8S (minikube v1.1.1) has been successful:
|
E2E tests of Eclipse Che Multiuser on OCP has been successful:
|
…ests were changed. Related PR: eclipse-che/che#14213
…ests were changed. Related PR: eclipse-che/che#14213
…ests were changed. Related PR: eclipse-che/che#14213 (#1577)
…ests were changed. Related PR: eclipse-che/che#14213 (redhat-developer#1577)
…ests were changed. Related PR: eclipse-che/che#14213 (#1577)
…ests were changed. Related PR: eclipse-che/che#14213 (#1577)
Signed-off-by: Ihor Okhrimenko [email protected]
What does this PR do?
Add possibility to build images from "dockerfiles" folder with '--no-cache' option
What issues does this PR fix or reference?
Issue: #14212
Release Notes
Docs PR