Files
robbit/Dockerfile
2024-03-27 22:13:36 -07:00

16 lines
232 B
Docker

FROM rust:alpine
RUN adduser -D robbit
RUN apk add --no-cache musl-dev
WORKDIR /home/robbit/
COPY ./ ./
RUN chown robbit ./*
RUN cp ./configs/config.toml ./config.toml
USER robbit
RUN cargo build -r
CMD ./target/release/robbit