Skip to content
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

Alpine Docker images no longer include the tzdata package in 3.0 #125

Open
MichaelSimons opened this issue Oct 3, 2019 · 0 comments
Open

Comments

@MichaelSimons
Copy link
Member

Alpine Docker images no longer include the tzdata package in 3.0

Beginning with the 3.0 release, the tzdata package has been removed from all Alpine Docker images.

Discussion

You can share your thoughts on this change or see what others are saying at:

dotnet/dotnet-docker#1366

Details

This package was removed because it wasn't required for the main set of scenarios and to have consistency between the runtime-deps images across all Linux distros. This package is still installed in the 2.x images for Alpine so this will be something to be aware of when migrating from 2.x to 3.0.

You may be impacted by this if you use any of the Alpine images and your code has a dependency on the tzdata package, such as using the System.TimeZoneInfo API. In that case, you'll need to update your Dockerfile to explicitly install the package:

RUN apk add --no-cache tzdata
@dotnet dotnet locked and limited conversation to collaborators Oct 3, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant