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-11-03 17:58:32 +0100 | 
| commit | d4fa5743024812f5a7a5968d4a850a30cea40956 (patch) | |
| tree | eb3487a1f23efe2404b3b9a25ce627f87cd61e36 | |
| parent | 57261fb13a672ec7b94441c356dd62863feb033d (diff) | |
| download | xK-d4fa5743024812f5a7a5968d4a850a30cea40956.tar.gz xK-d4fa5743024812f5a7a5968d4a850a30cea40956.tar.xz xK-d4fa5743024812f5a7a5968d4a850a30cea40956.zip  | |
WIP: xS: add a Dockerfile for testing purposes
| -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"]  | 
