survey/Dockerfile

25 lines
768 B
Docker
Raw Normal View History

2023-10-17 22:06:54 +05:30
FROM node:18-bookworm-slim as frontend
2021-10-14 16:26:23 +05:30
LABEL org.opencontainers.image.source https://github.com/mCaptcha/survey
RUN apt-get update && apt-get install -y make
COPY package.json yarn.lock /src/
COPY vendor/ /src/vendor
WORKDIR /src
RUN yarn install
COPY . .
RUN make frontend
2023-11-05 00:07:53 +05:30
FROM rust:latest as rust
2021-10-14 16:26:23 +05:30
WORKDIR /src
RUN apt-get update && apt-get install -y git libssl-dev
2021-10-14 16:26:23 +05:30
COPY . /src
COPY --from=frontend /src/static/cache/bundle /src/static/cache/bundle
RUN cargo build --release
2023-11-05 00:07:53 +05:30
FROM debian:bookworm
2021-10-14 16:26:23 +05:30
RUN useradd -ms /bin/bash -u 1001 mcaptcha-survey
WORKDIR /home/mcaptcha-survey
COPY --from=rust /src/target/release/survey /usr/local/bin/
COPY --from=rust /src/config/default.toml /etc/mcaptcha-survey/config.toml
USER mcaptcha-survey
CMD [ "/usr/local/bin/survey" ]