-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ RUN cp watchman-v2023.10.23.00-linux/bin/* /usr/local/bin | |
RUN cp watchman-v2023.10.23.00-linux/lib/* /usr/local/lib | ||
RUN wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz | ||
RUN tar xvf openssl-1.1.1o.tar.gz | ||
RUN cd openssl-1.1.1o && ./config && make && make install | ||
RUN cp libcrypto.so.1.1 /usr/lib | ||
RUN cd openssl-1.1.1o && ./config && make && make install && cp libcrypto.so.1.1 /usr/lib | ||
RUN watchman --version | ||
RUN echo 'eval $(rtx activate bash)' >> ~/.bashrc | ||
RUN rtx install [email protected] | ||
|
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 |
---|---|---|
|
@@ -14,8 +14,9 @@ const image = new Dockerfile() | |
.run("cp watchman-v2023.10.23.00-linux/lib/* /usr/local/lib") | ||
.run("wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz") | ||
.run("tar xvf openssl-1.1.1o.tar.gz") | ||
.run("cd openssl-1.1.1o && ./config && make && make install") | ||
.run("cp libcrypto.so.1.1 /usr/lib") | ||
.run( | ||
"cd openssl-1.1.1o && ./config && make && make install && cp libcrypto.so.1.1 /usr/lib" | ||
) | ||
.run("watchman --version") | ||
.run("echo 'eval $(rtx activate bash)' >> ~/.bashrc") | ||
.run("rtx install [email protected]") | ||
|