
?ssl=true previously would require the user to provide a cacertfile stripping the option to use the hosts ca set. bumping sarama to version 1.36.0 bumping alpine to 3.16.2 fix: tls path
16 lines
333 B
Docker
16 lines
333 B
Docker
FROM alpine:3.16.2
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
ADD tile38-server /usr/local/bin
|
|
ADD tile38-cli /usr/local/bin
|
|
ADD tile38-benchmark /usr/local/bin
|
|
|
|
RUN addgroup -S tile38 && \
|
|
adduser -S -G tile38 tile38 && \
|
|
mkdir /data && chown tile38:tile38 /data
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 9851
|
|
CMD ["tile38-server", "-d", "/data"]
|