Skip to content

Commit a99d262

Browse files
committed
Add the files for the cli example
[refs #debd91fa82c1]
1 parent 334b03e commit a99d262

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

entrypoints/curl/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM alpine:3.6
2+
3+
RUN apk update \
4+
&& apk add curl \
5+
&& rm -rf /var/cache/apk/*
6+
7+
ENTRYPOINT ["/usr/bin/curl"]

entrypoints/curl/docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: "3.3"
2+
3+
services:
4+
curl:
5+
image: jfahrer/curl:latest
6+
build:
7+
context: .

0 commit comments

Comments
 (0)