-
Notifications
You must be signed in to change notification settings - Fork 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
Upgrade alpine to 3.6 #468
Comments
See also #357, #360, and docker-library/golang#131 (comment) for where a change from 3.4 to 3.5 was made previously, where it was reverted, and the discussion that led to the revert. 😞 In some images, we've been adding explicit |
Thanks @tianon . I am pretty new to alpine, so I am still missing what are the issues. docker-library/golang#131 (comment) says, Are there any links/docs that might explain what are the issues. FWIW, I am installing PHP from alpine packages in a alpine 3.6 base image. That is working fine for me. |
If users are apk installing other libraries to support their php application, those could be renamed or replaced from one alpine release to the next and if we move the image it would break their builds. We are working towards having a better way to opt in to major changes like this. |
@tamalsaha If you don't want to have to maintain your own image you can also do this : # rabbitmq-c-dev is not available in alpine 3.4 but it is in alpine 3.6
RUN apk add \
--repository http://dl-cdn.alpinelinux.org/alpine/v3.6/main \
--no-cache \
rabbitmq-c-dev Not sure whether it's a bad practice but it works for me. |
Closing in favor of discussion to create base distro update process #504. |
Can the alpine base updated to 3.6 from 3.4? I am trying to install some additional packages and those are not available in 3.4.
The text was updated successfully, but these errors were encountered: