refractr/Dockerfile

17 lines
303 B
Text
Raw Normal View History

2025-03-02 14:39:12 -07:00
FROM rust:slim
2025-03-02 16:13:44 -07:00
ARG UID="1000"
ARG GID="1000"
WORKDIR /usr/src/refractr
COPY . .
RUN apt update && apt install pkg-config libssl-dev -y
2025-03-02 14:39:12 -07:00
RUN cargo build --release
RUN cargo install --locked --path .
2025-03-02 16:13:44 -07:00
RUN groupadd -g $GID refractr
RUN useradd -u $UID -g $GID -MN refractr
USER refractr
CMD ["refractr"]