kosyncrs/Containerfile
2025-04-15 10:02:59 +02:00

6 lines
195 B
Docker

FROM alpine:latest
LABEL maintainer="info@rustysoft.de"
RUN adduser -D kosync
COPY ./target/x86_64-unknown-linux-musl/release/kosyncrs /usr/local/bin/
USER kosync
CMD ["/usr/local/bin/kosyncrs"]