This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:3.9.4 | |
| # Add some libs required by .NET runtime | |
| # https://github.com/dotnet/core/blob/master/Documentation/build-and-install-rhel6-prerequisites.md#troubleshooting | |
| RUN apk add --no-cache \ | |
| openssh libunwind \ | |
| nghttp2-libs libidn krb5-libs libuuid lttng-ust zlib \ | |
| libstdc++ libintl \ | |
| icu |