First release

This commit is contained in:
Benjamin Renard 2022-04-30 14:28:16 +02:00
commit 1da9216630
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*~

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM alpine
RUN apk -Uuv add curl ca-certificates

9
README.md Normal file
View file

@ -0,0 +1,9 @@
# Docker image with curl
Simple alpine image with curl preinstalled
To use it:
```bash
docker run -it -v "$(pwd)":/src -w /src brenard/curl
```