-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #889 from cncf/image-updates
[feature/771] Github Actions: Env vars to configure docker images + new Alpine dockerfile for Crystal v1
- Loading branch information
Showing
3 changed files
with
30 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM crystallang/crystal:1.0.0-alpine | ||
|
||
RUN apk add --update --no-cache --force-overwrite \ | ||
gc-dev gcc gmp-dev libatomic_ops libevent-static \ | ||
musl-dev pcre-dev yaml-static \ | ||
libxml2-dev openssl-dev openssl-libs-static \ | ||
tzdata yaml-dev zlib-static \ | ||
make git \ | ||
llvm10-dev llvm10-static g++ | ||
|
||
CMD ["/bin/sh"] |