Files
robbit/Dockerfile

16 lines
236 B
Docker
Raw Normal View History

2024-03-27 18:06:23 -07:00
FROM rust:alpine
RUN adduser -D robbit
RUN apk add --no-cache musl-dev
WORKDIR /home/robbit/
COPY ./ ./
RUN chown robbit ./*
2024-03-27 22:13:36 -07:00
RUN cp ./configs/config.toml ./config.toml
2024-03-27 18:06:23 -07:00
USER robbit
RUN cargo build -r
2026-02-13 14:43:19 -05:00
CMD ["./target/release/robbit"]