Skip to content

Commit ee74eaf

Browse files
committed
add readme
1 parent 5601c15 commit ee74eaf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Docker Debian Build Image
2+
3+
A Debian image that includes the standard build tools.
4+
5+
Avoids setting up build tools for all source installs.
6+
7+
## Usage
8+
9+
```
10+
FROM deployable/debian-build:8
11+
12+
RUN set -uex ;\
13+
cd /tmp ;\
14+
curl https://app.com/release/1.2.3.tar.gz | tar -xvf - ;\
15+
cd 1.2.3 ;\
16+
./configure ;\
17+
make install ;\
18+
rm -rf /tmp/1.2.3
19+
```
20+

0 commit comments

Comments
 (0)