aboutsummaryrefslogtreecommitdiff
path: root/src/sally
diff options
context:
space:
mode:
Diffstat (limited to 'src/sally')
-rw-r--r--src/sally/Dockerfile10
-rw-r--r--src/sally/VERSION1
-rw-r--r--src/sally/sally.yaml9
3 files changed, 20 insertions, 0 deletions
diff --git a/src/sally/Dockerfile b/src/sally/Dockerfile
new file mode 100644
index 0000000..6767bde
--- /dev/null
+++ b/src/sally/Dockerfile
@@ -0,0 +1,10 @@
+FROM golang:latest as build
+RUN mkdir -p /opt/workspace \
+ && git clone https://git.ofmax.li/sally /opt/workspace/sally \
+ && cd /opt/workspace/sally \
+ && git checkout grumps-master \
+ && make grumps-build
+FROM scratch
+COPY --from=build /opt/workspace/sally/_tmp/sally /sally
+COPY sally.yaml /sally.yaml
+CMD ["/sally"]
diff --git a/src/sally/VERSION b/src/sally/VERSION
new file mode 100644
index 0000000..1474d00
--- /dev/null
+++ b/src/sally/VERSION
@@ -0,0 +1 @@
+v0.2.0
diff --git a/src/sally/sally.yaml b/src/sally/sally.yaml
new file mode 100644
index 0000000..03b1aa8
--- /dev/null
+++ b/src/sally/sally.yaml
@@ -0,0 +1,9 @@
+url: go.ofmax.li
+
+packages:
+ environ:
+ repo: git.ofmax.li/environ
+ iserv:
+ repo: git.ofmax.li/iserv
+ tmpl:
+ repo: git.ofmax.li/tmpl