summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-05-22 13:27:54 -0400
committersiddharth <s@ricketyspace.net>2022-05-22 13:27:54 -0400
commitd5b2de8b9ed0cf61a8ccf74d44d296b9cb2557aa (patch)
treec0cdef49797e904e5f267644940d9d0e620ab79b /Dockerfile
parenta06efa1b6619ee4f71728acc11c6f05091e49d77 (diff)
add Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..bb63bf2
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: ISC
+# Copyright © 2022 siddharth <s@ricketyspace.net>
+
+FROM golang:1.18.2
+
+WORKDIR /usr/src/peach
+
+COPY . .
+RUN make BUILD_OPTS="-v -o /usr/local/bin/peach"
+
+ENTRYPOINT ["peach"]