Files
robbit/Dockerfile

16 lines
232 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
CMD ./target/release/robbit