aboutsummaryrefslogtreecommitdiff
path: root/xS/Dockerfile
blob: cb9ceb3e9779051a80ab67bed19cecac345911e8 (plain)
1
2
3
4
5
6
7
8
9
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"]