Skip to content
This repository was archived by the owner on Feb 11, 2019. It is now read-only.

Commit f088cfd

Browse files
committed
Script for building the image.
1 parent d896855 commit f088cfd

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ nsenter
22
=======
33

44
Install `nsenter` and `docker-enter` on your 32bit system.
5+
Based on: https://github.com/jpetazzo/nsenter

build-image.sh

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash -x
2+
### Build a 32bit image for installing nsenter and docker-enter.
3+
### Based on: https://github.com/jpetazzo/nsenter
4+
5+
### go to the script directory
6+
cd $(dirname $0)
7+
8+
### get a copy of https://github.com/jpetazzo/nsenter
9+
git clone https://github.com/jpetazzo/nsenter
10+
11+
### replace the base image on Dockerfile
12+
sed -i nsenter/Dockerfile -e "/^FROM/ c FROM 32bit/debian:jessie"
13+
14+
### build the image
15+
docker build -t 32bit/nsenter nsenter/
16+
17+
### push image to Docker Hub
18+
docker push 32bit/nsenter
19+
20+
### cleanup
21+
rm -rf nsenter/

0 commit comments

Comments
 (0)