summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Arvydas Silanskas 2021-08-18 23:39:20 +0300
committerGravatar Arvydas Silanskas 2021-08-18 23:39:20 +0300
commit3d9514e4e34c72cb378b74d29a2fcde7579d3bd0 (patch)
treed200f198ad3dfecd6c46df11e035dce1ed070807 /Dockerfile
parentwork (diff)
srfi 126 impl
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 3a927cb..fac5a89 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,14 @@
FROM alpine
RUN apk add --no-cache git
-RUN mkdir /test
-WORKDIR /test
-ADD . srfi-225
+RUN mkdir /dependencies
+WORKDIR /dependencies
RUN ["git", "clone", "https://github.com/scheme-requests-for-implementation/srfi-69/"]
RUN ["git", "clone", "https://github.com/scheme-requests-for-implementation/srfi-125/"]
RUN ["git", "clone", "https://github.com/scheme-requests-for-implementation/srfi-126/"]
RUN ["git", "clone", "https://github.com/scheme-requests-for-implementation/srfi-146/"]
+RUN ["wget", "https://snow-fort.org/s/ccs.neu.edu/will/r6rs/enums/0.0.1/r6rs-enums-0.0.1.tgz"]
+RUN ["tar", "-xf", "r6rs-enums-0.0.1.tgz"]
+RUN ["wget", "https://snow-fort.org/s/ccs.neu.edu/will/r6rs/lists/0.0.1/r6rs-lists-0.0.1.tgz"]
+RUN ["tar", "-xf", "r6rs-lists-0.0.1.tgz"]
+RUN ["wget", "https://snow-fort.org/s/ccs.neu.edu/will/r6rs/sorting/0.0.1/r6rs-sorting-0.0.1.tgz"]
+RUN ["tar", "-xf", "r6rs-sorting-0.0.1.tgz"]