We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0f3946 commit 787e907Copy full SHA for 787e907
Dockerfile
@@ -1,5 +1,7 @@
1
FROM centos:centos7
2
3
+RUN yum -y update && yum -y upgrade && yum -y install automake autoconf libtool
4
+
5
COPY entrypoint.sh /entrypoint.sh
6
7
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -1,5 +1,6 @@
#!/bin/sh -l
-echo "Hello $1"
-time=$(date)
-echo ::set-output name=time::$time
+./autogen.sh
+./configure --prefix=/tmp/ltfs
+make
+make install
0 commit comments