2021-11-21 18:34:08 +01:00
|
|
|
# syntax=docker/dockerfile:1
|
2022-02-02 14:07:35 +01:00
|
|
|
FROM docker.io/rust:1.58-bullseye AS builder
|
2021-11-21 18:34:08 +01:00
|
|
|
WORKDIR /usr/src/conduit
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2021-11-21 18:34:08 +01:00
|
|
|
# Install required packages to build Conduit and it's dependencies
|
2022-02-16 15:04:32 +01:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get -y --no-install-recommends install libclang-dev=1:11.0-51+nmu5
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2021-11-21 18:34:08 +01:00
|
|
|
# == Build dependencies without our own code separately for caching ==
|
|
|
|
#
|
|
|
|
# Need a fake main.rs since Cargo refuses to build anything otherwise.
|
|
|
|
#
|
|
|
|
# See https://github.com/rust-lang/cargo/issues/2644 for a Cargo feature
|
|
|
|
# request that would allow just dependencies to be compiled, presumably
|
|
|
|
# regardless of whether source files are available.
|
|
|
|
RUN mkdir src && touch src/lib.rs && echo 'fn main() {}' > src/main.rs
|
|
|
|
COPY Cargo.toml Cargo.lock ./
|
|
|
|
RUN cargo build --release && rm -r src
|
|
|
|
|
|
|
|
# Copy over actual Conduit sources
|
|
|
|
COPY src src
|
|
|
|
|
|
|
|
# main.rs and lib.rs need their timestamp updated for this to work correctly since
|
|
|
|
# otherwise the build with the fake main.rs from above is newer than the
|
|
|
|
# source files (COPY preserves timestamps).
|
|
|
|
#
|
|
|
|
# Builds conduit and places the binary at /usr/src/conduit/target/release/conduit
|
|
|
|
RUN touch src/main.rs && touch src/lib.rs && cargo build --release
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2021-11-21 18:34:08 +01:00
|
|
|
# ---------------------------------------------------------------------------------------------------------------
|
|
|
|
# Stuff below this line actually ends up in the resulting docker image
|
|
|
|
# ---------------------------------------------------------------------------------------------------------------
|
2022-02-02 14:07:35 +01:00
|
|
|
FROM docker.io/debian:bullseye-slim AS runner
|
2021-11-21 18:34:08 +01:00
|
|
|
|
|
|
|
# Standard port on which Conduit launches.
|
|
|
|
# You still need to map the port when using the docker command or docker-compose.
|
2021-07-06 10:40:57 +02:00
|
|
|
EXPOSE 6167
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2022-02-13 13:25:19 +01:00
|
|
|
ENV CONDUIT_PORT=6167 \
|
2022-02-13 13:38:13 +01:00
|
|
|
CONDUIT_ADDRESS="0.0.0.0" \
|
2022-02-13 13:25:19 +01:00
|
|
|
CONDUIT_DATABASE_PATH=/var/lib/matrix-conduit \
|
2022-02-16 14:04:45 +01:00
|
|
|
CONDUIT_CONFIG=''
|
|
|
|
# └─> Set no config file to do all configuration with env vars
|
2021-11-21 18:34:08 +01:00
|
|
|
|
|
|
|
# Conduit needs:
|
|
|
|
# ca-certificates: for https
|
2022-02-02 14:07:35 +01:00
|
|
|
# iproute2 & wget: for the healthcheck script
|
2022-02-16 15:04:32 +01:00
|
|
|
RUN apt-get update && apt-get -y --no-install-recommends install \
|
2021-12-15 11:14:20 +01:00
|
|
|
ca-certificates \
|
2022-02-02 14:07:35 +01:00
|
|
|
iproute2 \
|
2022-02-02 14:35:15 +01:00
|
|
|
wget \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2021-11-21 18:34:08 +01:00
|
|
|
|
|
|
|
# Created directory for the database and media files
|
2020-08-01 15:18:49 +02:00
|
|
|
RUN mkdir -p /srv/conduit/.local/share/conduit
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2021-11-21 18:34:08 +01:00
|
|
|
# Test if Conduit is still alive, uses the same endpoint as Element
|
2021-11-25 23:36:44 +01:00
|
|
|
COPY ./docker/healthcheck.sh /srv/conduit/healthcheck.sh
|
2021-11-21 18:34:08 +01:00
|
|
|
HEALTHCHECK --start-period=5s --interval=5s CMD ./healthcheck.sh
|
|
|
|
|
|
|
|
# Copy over the actual Conduit binary from the builder stage
|
2021-11-25 23:36:44 +01:00
|
|
|
COPY --from=builder /usr/src/conduit/target/release/conduit /srv/conduit/conduit
|
2021-11-21 18:34:08 +01:00
|
|
|
|
2022-02-02 14:07:35 +01:00
|
|
|
# Improve security: Don't run stuff as root, that does not need to run as root
|
2022-02-16 15:04:32 +01:00
|
|
|
# Most distros also use 1000:1000 for the first real user, so this should resolve volume mounting problems.
|
|
|
|
ARG USER_ID=1000
|
|
|
|
ARG GROUP_ID=1000
|
2020-07-23 23:58:08 +02:00
|
|
|
RUN set -x ; \
|
2022-02-16 15:04:32 +01:00
|
|
|
groupadd -r -g ${GROUP_ID} conduit ; \
|
|
|
|
useradd -l -r -M -d /srv/conduit -o -u ${USER_ID} -g conduit conduit && exit 0 ; exit 1
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2022-02-02 14:07:35 +01:00
|
|
|
# Change ownership of Conduit files to conduit user and group and make the healthcheck executable:
|
|
|
|
RUN chown -cR conduit:conduit /srv/conduit && \
|
|
|
|
chmod +x /srv/conduit/healthcheck.sh
|
2020-07-23 23:58:08 +02:00
|
|
|
|
2022-02-02 14:07:35 +01:00
|
|
|
# Change user to conduit, no root permissions afterwards:
|
|
|
|
USER conduit
|
2020-08-02 12:58:52 +02:00
|
|
|
# Set container home directory
|
2020-07-23 23:58:08 +02:00
|
|
|
WORKDIR /srv/conduit
|
2021-11-21 18:34:08 +01:00
|
|
|
|
|
|
|
# Run Conduit and print backtraces on panics
|
|
|
|
ENV RUST_BACKTRACE=1
|
2022-01-20 12:29:24 +01:00
|
|
|
ENTRYPOINT [ "/srv/conduit/conduit" ]
|