Skip to content

Commit 787e907

Browse files
author
Atsushi Abe
committed
First build study
1 parent b0f3946 commit 787e907

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM centos:centos7
22

3+
RUN yum -y update && yum -y upgrade && yum -y install automake autoconf libtool
4+
35
COPY entrypoint.sh /entrypoint.sh
46

57
ENTRYPOINT ["/entrypoint.sh"]

entrypoint.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh -l
22

3-
echo "Hello $1"
4-
time=$(date)
5-
echo ::set-output name=time::$time
3+
./autogen.sh
4+
./configure --prefix=/tmp/ltfs
5+
make
6+
make install

0 commit comments

Comments
 (0)