From f471db2cde71d53d7cb9d99d5237a0e5c06e332f Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Tue, 16 Jun 2026 20:28:18 +0200 Subject: [PATCH] chore: remove Dockerfile relocated to posix-sdc --- Dockerfile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index cb8280d..0000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -# Minimal dash-in-a-box for sekft trajectory generation. -# docker build -t sekft-dash . -# -# dash as the operated shell (strict POSIX, no bashisms), busybox applets for -# the coreutils. busybox is intentionally close to minimal POSIX so trajectories -# transfer toward sek rather than encoding GNU-isms. Add `coreutils findutils -# grep sed` here if you want GNU semantics instead. -FROM alpine:3.19 -RUN apk add --no-cache dash \ - && ln -sf /usr/bin/dash /bin/dash \ - && ln -sf /usr/bin/dash /bin/sh -# /work is the default arena; provider files land at their absolute paths. -RUN mkdir -p /work -WORKDIR /work