29 lines
905 B
Docker
29 lines
905 B
Docker
FROM node:16.9.1 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 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"]
|