drop libconfig completely

This commit is contained in:
Wolfgang Hottgenroth 2023-09-28 08:16:58 +02:00
parent e4177eeb27
commit 5a34c3079f
Signed by: wn
GPG Key ID: 836E9E1192A6B132

View File

@ -7,7 +7,6 @@ COPY sink/ /tmp/sink
RUN \
apk update && \
apk add alpine-sdk && \
apk add libconfig-dev && \
apk add postgresql-dev && \
cd /tmp/sink && \
make VERSION=${VERSION}
@ -26,8 +25,7 @@ ENV UPPER_BOUND="56000"
COPY --from=builder /tmp/sink/build/sink20169 /usr/local/bin/
RUN \
apk add --no-cache libpq && \
apk add --no-cache libconfig
apk add --no-cache libpq
EXPOSE 20169/udp
USER nobody