-
Notifications
You must be signed in to change notification settings - Fork 11
QUA-958: Push images to Dockerhub instead of GCR #59
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
Conversation
@@ -37,13 +37,13 @@ RUN composer install --no-dev && \ | |||
|
|||
# Build Content | |||
COPY bin/build-content ./bin/build-content | |||
RUN apk add --no-cache ruby ruby-json ruby-bigdecimal ruby-dev build-base libxml2-dev libxslt-dev libffi-dev && \ | |||
RUN apk add --no-cache ruby ruby-json ruby-bigdecimal ruby-dev build-base libxml2-dev libxslt-dev libffi-dev yaml-dev && \ |
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.
Hey, it looks good to me, before approving it, do you mind explaining why we need this yaml-dev
library please?
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.
bump
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.
to install rdoc
which is included in a previous step in the Dockerfile, it needs this yaml-dev
library to install correctly. If we don't include this library, this error pops up in the installation:
this didn't happen before because with the alpine:edge
image, we were sitting on version 3.15.0_alpha20210804
instead of version 3.15.0
, which might not have that necessary yaml-dev
library.
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.
thanks!
Deprecate pushing of the image to GCR in favor of pushing to Dockerhub.
Also, replace base image from
alpine:edge
toalpine:3.15.0
to prevent CI failure