diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..7b61392 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +.git +.gitignore +Dockerfile +LICENSE +README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a256440 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# https://hub.docker.com/_/busybox/ +FROM busybox:1 + + +RUN adduser -D static +USER static +WORKDIR /home/static + +COPY . . + +CMD ["busybox", "httpd", "-f", "-v", "-p", "8080"]