17 lines
411 B
Docker
17 lines
411 B
Docker
FROM rust:1.45-slim-stretch AS builder
|
|
RUN rustup install nightly-x86_64-unknown-linux-gnu
|
|
|
|
RUN apt update && apt install -y libclang-dev
|
|
|
|
COPY . /sources
|
|
WORKDIR /sources
|
|
RUN cargo +nightly build --release
|
|
RUN chown nobody:nogroup /sources/target/release/bin
|
|
|
|
|
|
FROM debian:stretch-slim
|
|
COPY --from=builder /sources/target/release/bin /pastebin
|
|
|
|
USER nobody
|
|
EXPOSE 8000
|
|
ENTRYPOINT ["/pastebin", "0.0.0.0:8000"]
|