Skip to content

Commit b28feac

Browse files
committed
Add tiny image builder for test registry
1 parent 4608884 commit b28feac

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ erl_crash.dump
2222
# secrets file as long as you replace its contents by environment
2323
# variables.
2424
/config/prod.secret.exs
25+
registry/data/docker

test_image/message.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OHAI

test_image/tiny.Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# we just create a small container message.txt at /message.txt
2+
# so that we can tag it and push it to the test registry
3+
4+
FROM busybox
5+
6+
COPY message.txt /message.txt

0 commit comments

Comments
 (0)