29 lines
931 B
Docker
29 lines
931 B
Docker
FROM node:20.17.0 as frontend
|
|
COPY package.json package-lock.json /src/
|
|
WORKDIR /src
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run sass
|
|
|
|
FROM rust:slim as rust
|
|
WORKDIR /src
|
|
RUN apt-get update && apt-get install -y git pkg-config libssl-dev make
|
|
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 || true
|
|
COPY --from=frontend /src/static/ /src/static/
|
|
COPY . /src
|
|
RUN cd utils/cache-bust && cargo run
|
|
RUN cargo build --release
|
|
|
|
FROM debian:bullseye-slim
|
|
#RUN useradd -ms /bin/bash -u 1000 librepages
|
|
#RUN mkdir -p /var/www/librepages && chown librepages /var/www/librepages
|
|
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/librepages /usr/local/bin/
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|