aboutsummaryrefslogtreecommitdiff
path: root/xS
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2024-12-16 08:34:17 +0100
committerPřemysl Eric Janouch <p@janouch.name>2026-01-10 13:02:14 +0100
commit782b330f3f08862567c914f7759de74d46c6e840 (patch)
treec74c8b28154179b96868fbb11cedbdde796528b4 /xS
parentc68e1f9d49d380183f3b44600cf9b8a7db8a7739 (diff)
downloadxK-782b330f3f08862567c914f7759de74d46c6e840.tar.gz
xK-782b330f3f08862567c914f7759de74d46c6e840.tar.xz
xK-782b330f3f08862567c914f7759de74d46c6e840.zip
WIP: xS: add a Dockerfile for testing purposes
Diffstat (limited to 'xS')
-rw-r--r--xS/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/xS/Dockerfile b/xS/Dockerfile
new file mode 100644
index 0000000..cb9ceb3
--- /dev/null
+++ b/xS/Dockerfile
@@ -0,0 +1,10 @@
+# TODO(p): Make it possible to store configuration.
+# docker/podman build --tag xs-irc --file xS/Dockerfile ..
+FROM alpine:latest
+LABEL org.opencontainers.image.url="https://git.janouch.name/p/xK"
+RUN apk add --no-cache build-base make go
+WORKDIR /xK/xS
+COPY .. /xK
+RUN make
+EXPOSE 6667
+ENTRYPOINT ["./xS"]