Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
28411be1
Commit
28411be1
authored
Nov 12, 2015
by
Mike Danese
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add debian iptables image
parent
54e6db08
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
Dockerfile
build/debian-iptables/Dockerfile
+7
-0
Makefile
build/debian-iptables/Makefile
+12
-0
No files found.
build/debian-iptables/Dockerfile
0 → 100644
View file @
28411be1
FROM
debian
# All apt-get's must be in one run command or the
# cleanup has no effect.
RUN
apt-get update
&&
\
apt-get
install
-y
iptables
&&
\
ls
/var/lib/apt/lists/
*
debian
*
| xargs
rm
build/debian-iptables/Makefile
0 → 100644
View file @
28411be1
.PHONY
:
build push
IMAGE
=
debian-iptables
TAG
=
v1
build
:
docker build
-t
beta.gcr.io/google_containers/
$(IMAGE)
:
$(TAG)
.
push
:
build
gcloud docker
--server
=
beta.gcr.io push beta.gcr.io/google_containers/
$(IMAGE)
:
$(TAG)
all
:
push
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment