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> | 2026-03-28 03:50:52 +0100 |
| commit | 7404c10ffaa9f7ce86d63d1d0b487cbe35f3712e (patch) | |
| tree | 1b6962993df36f8f5cbcd2af408b099f6fe48af0 /xS/Dockerfile | |
| parent | 5ba2c825a17cd9b7f2ef2c628b0e310d1c47a981 (diff) | |
| download | xK-7404c10ffaa9f7ce86d63d1d0b487cbe35f3712e.tar.gz xK-7404c10ffaa9f7ce86d63d1d0b487cbe35f3712e.tar.xz xK-7404c10ffaa9f7ce86d63d1d0b487cbe35f3712e.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"] |
