2021-06-30 14:54:33 +00:00
|
|
|
# Build image
|
|
|
|
FROM rust:alpine AS builder
|
|
|
|
|
|
|
|
RUN set -x \
|
|
|
|
# Add user
|
|
|
|
&& addgroup --gid 10001 app \
|
|
|
|
&& adduser --disabled-password \
|
|
|
|
--gecos '' \
|
|
|
|
--ingroup app \
|
|
|
|
--home /app \
|
|
|
|
--uid 10001 \
|
|
|
|
app
|
|
|
|
RUN set -x \
|
|
|
|
# Install required packages
|
2021-08-31 14:46:31 +00:00
|
|
|
&& apk add npm openssl-dev musl-dev make perl
|
2021-06-30 14:54:33 +00:00
|
|
|
USER app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN set -x \
|
|
|
|
# Install build tools
|
|
|
|
&& RUSTFLAGS=-Ctarget-feature=-crt-static cargo install wasm-pack \
|
|
|
|
&& npm install rollup
|
|
|
|
# Build
|
|
|
|
COPY --chown=app:app . /app
|
2021-08-31 14:46:31 +00:00
|
|
|
RUN cargo build --release -p lldap
|
2021-06-30 14:54:33 +00:00
|
|
|
# TODO: release mode.
|
|
|
|
RUN ./app/build.sh
|
|
|
|
|
|
|
|
|
|
|
|
# Final image
|
|
|
|
FROM alpine
|
|
|
|
|
|
|
|
RUN set -x \
|
|
|
|
# Add user
|
|
|
|
&& addgroup --gid 10001 app \
|
|
|
|
&& adduser --disabled-password \
|
|
|
|
--gecos '' \
|
|
|
|
--ingroup app \
|
|
|
|
--home /app \
|
|
|
|
--uid 10001 \
|
|
|
|
app
|
|
|
|
|
|
|
|
RUN mkdir /data && chown app:app /data
|
|
|
|
USER app
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --chown=app:app --from=builder /app/app/index.html app/index.html
|
|
|
|
COPY --chown=app:app --from=builder /app/app/main.js app/main.js
|
|
|
|
COPY --chown=app:app --from=builder /app/app/pkg app/pkg
|
|
|
|
COPY --chown=app:app --from=builder /app/target/release/lldap lldap
|
|
|
|
|
|
|
|
ENV LDAP_PORT=3890
|
|
|
|
ENV HTTP_PORT=17170
|
|
|
|
|
|
|
|
EXPOSE ${LDAP_PORT} ${HTTP_PORT}
|
|
|
|
|
2021-07-01 09:43:57 +00:00
|
|
|
CMD ["/app/lldap", "--config-file", "/data/lldap_config.toml"]
|