diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..7a694c9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +LICENSE \ No newline at end of file diff --git a/README.MD b/README.MD index 61fa011..9714a72 100644 --- a/README.MD +++ b/README.MD @@ -46,3 +46,11 @@ This repository contains some simple scripts to build third party libraries for | libxml2 | ❌ | | openssl | ❌ | | zlib | ❓ | + + +# Docker +To launch the container in your terminal, enter this command +## Alpine +``` +docker run -it sumzbrod/ctl_simple_container:alpine.3.23.3 +``` diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..b6db655 --- /dev/null +++ b/dockerfile @@ -0,0 +1,7 @@ +FROM alpine:3.23.3 + +WORKDIR /app + +COPY . . + +CMD ["/bin/sh"]