-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca52b20
commit 34a37bd
Showing
5 changed files
with
41 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM centos:7 | ||
|
||
RUN sed -e 's/mirror\.centos\.org/vault\.centos\.org/g' \ | ||
-e 's/^mirrorlist=/#mirrorlist=/g' \ | ||
-e 's/^#\s*baseurl=/baseurl=/g' \ | ||
-i /etc/yum.repos.d/CentOS-*.repo \ | ||
&& yum install -y @development bzip2 ca-certificates texinfo wget zlib-devel \ | ||
&& yum clean all | ||
|
||
RUN useradd --create-home --shell /bin/bash linuxbrew | ||
|
||
ENV CFLAGS="-march=armv8-a -O2" | ||
ENV CXXFLAGS="-march=armv8-a -O2" | ||
ENV PREFIX=/tmp/homebrew | ||
RUN su - linuxbrew --command 'mkdir --parents /tmp/homebrew' | ||
ENV PKGDIR=/home/linuxbrew/bootstrap-binaries | ||
RUN su - linuxbrew --command 'mkdir --parents /home/linuxbrew/bootstrap-binaries' |
File renamed without changes.
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