6 lines
195 B
Docker
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"]
|