diff options
author | Karel Kočí <cynerd@email.cz> | 2021-03-10 16:26:06 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2021-03-10 16:26:06 +0100 |
commit | 3a47143704a0600c044a3c91230e325ef7a5d3bd (patch) | |
tree | 98fd304f84c81048c7af7e6aee179705b91736ca /.Dockerfile | |
parent | 324495f8059bbb7088f0fac0ae4f2aa0a05f526b (diff) | |
download | alpine-personal-pkgs-3a47143704a0600c044a3c91230e325ef7a5d3bd.tar.gz alpine-personal-pkgs-3a47143704a0600c044a3c91230e325ef7a5d3bd.tar.bz2 alpine-personal-pkgs-3a47143704a0600c044a3c91230e325ef7a5d3bd.zip |
Add development docker container file
Diffstat (limited to '.Dockerfile')
-rw-r--r-- | .Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.Dockerfile b/.Dockerfile new file mode 100644 index 0000000..365436f --- /dev/null +++ b/.Dockerfile @@ -0,0 +1,13 @@ +FROM alpine + +RUN \ + apk update && \ + apk add abuild + +RUN \ + adduser -D cynerd && \ + addgroup cynerd abuild + +USER cynerd + +RUN abuild-keygen -ia |