summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-11-04 18:59:22 -0800
committerMichael Forney <mforney@mforney.org>2019-11-04 19:01:18 -0800
commit09cb647879b12dd8fee8a220dc2609e55bb0731d (patch)
tree966d1514fe496bd67df89d8f1d7f6be16b48601d /Dockerfile
parente41789f435b31a4fd143f784b189317bfcb6bac4 (diff)
Remove unused Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 2d9b9f62..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM alpine:edge
-RUN apk add --no-cache alpine-sdk bison libarchive-tools linux-headers lua5.2 nasm ncurses ninja tzdata wayland-dev
-
-COPY . /oasis
-WORKDIR oasis
-COPY docker/config.lua .
-
-ENV PATH $PATH:/oasis/out/pkg/texi2mdoc
-ENV PAXREAD bsdtar -xf -
-RUN git config --global user.name oasis && \
- git config --global user.email oasis && \
- lua5.2 ./setup.lua && \
- ninja out/pkg/texi2mdoc/texi2mdoc && \
- ninja && \
- git -C out/root.git --work-tree=$PWD read-tree -u --prefix=root/ tree
-
-FROM scratch
-COPY --from=0 /oasis/root /
-COPY docker/etc /etc
-RUN /libexec/applyperms -d / && \
- /libexec/applyperms -d /etc && \
- makewhatis /share/man
-
-ENV XDG_RUNTIME_DIR /tmp
-CMD ksh -l