2022-03-15 15:29:21 +05:30
|
|
|
FROM rust:slim as rust
|
2021-10-29 20:38:56 +05:30
|
|
|
WORKDIR /src
|
|
|
|
RUN apt-get update && apt-get install -y git pkg-config libssl-dev
|
|
|
|
RUN mkdir src && echo "fn main() {}" > src/main.rs
|
|
|
|
COPY Cargo.toml .
|
|
|
|
RUN sed -i '/.*build.rs.*/d' Cargo.toml
|
|
|
|
COPY Cargo.lock .
|
|
|
|
RUN cargo build --release
|
|
|
|
COPY . /src
|
|
|
|
RUN cargo build --release
|
|
|
|
|
|
|
|
FROM debian:bullseye-slim
|
|
|
|
#RUN useradd -ms /bin/bash -u 1000 pages
|
|
|
|
#RUN mkdir -p /var/www/pages && chown pages /var/www/pages
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates
|
|
|
|
COPY scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
COPY --from=rust /src/target/release/pages /usr/local/bin/
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|