diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-12-16 08:34:17 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2025-01-12 11:02:41 +0100 |
commit | ae01ef599ab382ad97c5d33036ca8c37ced5b771 (patch) | |
tree | 08dca8c5204a039db7b9381f3bdd4a5916afdc33 /xS/Dockerfile | |
parent | e225306419304360a85cbbe9b820de5914a9f7dc (diff) | |
download | xK-ae01ef599ab382ad97c5d33036ca8c37ced5b771.tar.gz xK-ae01ef599ab382ad97c5d33036ca8c37ced5b771.tar.xz xK-ae01ef599ab382ad97c5d33036ca8c37ced5b771.zip |
WIP: xS: add a Dockerfile for testing purposes
Diffstat (limited to 'xS/Dockerfile')
-rw-r--r-- | xS/Dockerfile | 10 |
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"] |