Skip to content
Snippets Groups Projects
Commit 7b21f982 authored by ale's avatar ale
Browse files

Add CI configuration

parent 599a51c0
No related branches found
No related tags found
No related merge requests found
include:
- "https://git.autistici.org/pipelines/containers/raw/master/common.yml"
- "https://git.autistici.org/pipelines/images/test/golang/raw/master/ci.yml"
# Don't build a static binary, the duckdb libraries need NSS for name
# resolution and such anyway.
FROM golang:1.21 AS build
ADD . /src
WORKDIR /src
RUN go build -trimpath -o /pqlogd ./cmd/pqlogd
FROM registry.git.autistici.org/pipelines/images/base/debian:bookworm
COPY --from=build /pqlogd /usr/bin/pqlogd
ENTRYPOINT ["/usr/bin/pqlogd"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment