2025-06-03 13:52:13 -04:00
|
|
|
# First stage - Ubuntu with document processing dependencies and curl for downloading
|
2025-11-19 05:02:40 -05:00
|
|
|
FROM ubuntu:noble-20251013@sha256:c35e29c9450151419d9448b0fd75374fec4fff364a27f176fb458d472dfc9e54 AS builder
|
2022-08-12 18:44:32 -04:00
|
|
|
# Setting bash as our shell, and enabling pipefail option
|
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
2019-07-17 09:02:10 -04:00
|
|
|
|
2024-04-17 08:19:59 -04:00
|
|
|
# Build Arguments
|
2019-07-17 09:02:10 -04:00
|
|
|
ARG PUID=2000
|
|
|
|
|
ARG PGID=2000
|
2024-04-17 08:19:59 -04:00
|
|
|
# MM_PACKAGE build arguments controls which version of mattermost to install, defaults to latest stable enterprise
|
MM-64878: FIPS Build (#33809)
* pin to ubuntu-24.04
* always use FIPS compatible Postgres settings
* use sha256 for remote cluster IDs
* use sha256 for client config hash
* rework S3 backend to be FIPS compatible
* skip setup-node during build, since already in container
* support FIPS builds
* Dockerfile for FIPS image, using glibc-openssl-fips
* workaround entrypoint inconsistencies
* authenticate to DockerHub
* fix FIPS_ENABLED, add test-mmctl-fips
* decouple check-mattermost-vet from test/build steps
* fixup! decouple check-mattermost-vet from test/build steps
* only build-linux-amd64 for fips
* rm entrypoint workaround
* tweak comment grammar
* rm unused Dockerfile.fips (for now)
* ignore gpg import errors, since would fail later anyway
* for fips, only make package-linux-amd64
* set FIPS_ENABLED for build step
* Add a FIPS-specific list of prepackaged plugins
Note that the names are still temporary, since they are not uploaded to
S3 yet. We may need to tweak them when that happens.
* s/golangci-lint/check-style/
This ensures we run all the `check-style` checks: previously,
`modernize` was missing.
* pin go-vet to @v2, remove annoying comment
* add -fips to linux-amd64.tz.gz package
* rm unused setup-chainctl
* use BUILD_TYPE_NAME instead
* mv fips build to enterprise-only
* fixup! use BUILD_TYPE_NAME instead
* temporarily pre-package no plugins for FIPS
* split package-cleanup
* undo package-cleanup, just skip ARM, also test
* skip arm for FIPS in second target too
* fmt Makefile
* Revert "rm unused Dockerfile.fips (for now)"
This reverts commit 601e37e0fff7b7703540bb9e91961ad8bb83b2e7.
* reintroduce Dockerfile.fips and align with existing Dockerfile
* s/IMAGE/BUILD_IMAGE/
* bump the glibc-openssl-fips version
* rm redundant comment
* fix FIPS checks
* set PLUGIN_PACKAGES empty until prepackaged plugins ready
* upgrade glibc-openssl-fips, use non-dev version for final stage
* another BUILD_IMAGE case
* Prepackage the FIPS versions of plugins
* relocate FIPS_ENABLED initialization before use
* s/Config File MD5/Config File Hash/
* Update the FIPS plugin names and encode the + sign
* add /var/tmp for local socket manipulation
---------
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
Co-authored-by: Mattermost Build <build@mattermost.com>
2025-09-15 09:53:28 -04:00
|
|
|
# e.g. https://releases.mattermost.com/9.7.1/mattermost-9.7.1-linux-amd64.tar.gz
|
2024-04-17 08:19:59 -04:00
|
|
|
ARG MM_PACKAGE="https://latest.mattermost.com/mattermost-enterprise-linux"
|
2019-07-17 09:02:10 -04:00
|
|
|
|
2025-06-03 13:52:13 -04:00
|
|
|
# Install needed packages and indirect dependencies
|
2022-08-12 18:44:32 -04:00
|
|
|
RUN apt-get update \
|
2023-07-25 11:32:49 -04:00
|
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
2023-04-25 08:59:31 -04:00
|
|
|
ca-certificates \
|
|
|
|
|
curl \
|
2024-07-25 08:23:37 -04:00
|
|
|
media-types \
|
|
|
|
|
mailcap \
|
2023-04-25 08:59:31 -04:00
|
|
|
unrtf \
|
|
|
|
|
wv \
|
|
|
|
|
poppler-utils \
|
|
|
|
|
tidy \
|
2023-07-25 11:32:49 -04:00
|
|
|
tzdata \
|
2022-08-12 18:44:32 -04:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
# Set mattermost group/user and download Mattermost
|
2019-07-17 09:02:10 -04:00
|
|
|
RUN mkdir -p /mattermost/data /mattermost/plugins /mattermost/client/plugins \
|
2024-07-25 08:23:37 -04:00
|
|
|
&& groupadd --gid ${PGID} mattermost \
|
|
|
|
|
&& useradd --uid ${PUID} --gid ${PGID} --comment "" --home-dir /mattermost mattermost \
|
2024-04-17 08:19:59 -04:00
|
|
|
&& curl -L $MM_PACKAGE | tar -xvz \
|
2023-02-24 06:56:25 -05:00
|
|
|
&& chown -R mattermost:mattermost /mattermost /mattermost/data /mattermost/plugins /mattermost/client/plugins
|
2019-07-17 09:02:10 -04:00
|
|
|
|
2025-07-23 04:01:50 -04:00
|
|
|
# Create PostgreSQL client SSL directory structure for ssl_mode=require
|
|
|
|
|
RUN mkdir -p /mattermost/.postgresql \
|
|
|
|
|
&& chmod 700 /mattermost/.postgresql
|
|
|
|
|
|
2025-06-03 13:52:13 -04:00
|
|
|
# Final stage using distroless for minimal attack surface
|
|
|
|
|
FROM gcr.io/distroless/base-debian12
|
|
|
|
|
|
|
|
|
|
# Some ENV variables
|
|
|
|
|
ENV PATH="/mattermost/bin:${PATH}"
|
|
|
|
|
ENV MM_SERVICESETTINGS_ENABLELOCALMODE="true"
|
2025-11-12 13:16:44 -05:00
|
|
|
ENV MM_INSTALL_TYPE="docker"
|
2025-06-03 13:52:13 -04:00
|
|
|
|
|
|
|
|
# Copy over metadata files needed by runtime
|
|
|
|
|
COPY --from=builder /etc/mime.types /etc
|
|
|
|
|
|
2025-07-23 04:01:50 -04:00
|
|
|
# Copy CA certificates for SSL/TLS validation with proper ownership
|
|
|
|
|
COPY --from=builder --chown=2000:2000 /etc/ssl/certs /etc/ssl/certs
|
|
|
|
|
|
2025-06-03 13:52:13 -04:00
|
|
|
# Copy document processing utilities and necessary support files
|
|
|
|
|
COPY --from=builder /usr/bin/pdftotext /usr/bin/pdftotext
|
|
|
|
|
COPY --from=builder /usr/bin/wvText /usr/bin/wvText
|
|
|
|
|
COPY --from=builder /usr/bin/wvWare /usr/bin/wvWare
|
|
|
|
|
COPY --from=builder /usr/bin/unrtf /usr/bin/unrtf
|
|
|
|
|
COPY --from=builder /usr/bin/tidy /usr/bin/tidy
|
|
|
|
|
COPY --from=builder /usr/share/wv /usr/share/wv
|
|
|
|
|
|
|
|
|
|
# Copy necessary libraries for document processing utilities
|
|
|
|
|
COPY --from=builder /usr/lib/libpoppler.so* /usr/lib/
|
|
|
|
|
COPY --from=builder /usr/lib/libfreetype.so* /usr/lib/
|
|
|
|
|
COPY --from=builder /usr/lib/libpng.so* /usr/lib/
|
|
|
|
|
COPY --from=builder /usr/lib/libwv.so* /usr/lib/
|
|
|
|
|
COPY --from=builder /usr/lib/libtidy.so* /usr/lib/
|
|
|
|
|
COPY --from=builder /usr/lib/libfontconfig.so* /usr/lib/
|
|
|
|
|
|
2025-07-23 04:01:50 -04:00
|
|
|
# Copy mattermost from builder stage
|
2025-06-03 13:52:13 -04:00
|
|
|
COPY --from=builder --chown=2000:2000 /mattermost /mattermost
|
|
|
|
|
|
|
|
|
|
# Copy passwd including mattermost user
|
|
|
|
|
COPY passwd /etc/passwd
|
|
|
|
|
|
2022-08-12 18:44:32 -04:00
|
|
|
# We should refrain from running as privileged user
|
2019-07-17 09:02:10 -04:00
|
|
|
USER mattermost
|
|
|
|
|
|
2025-06-03 13:52:13 -04:00
|
|
|
# Healthcheck to make sure container is ready - using mmctl instead of curl for distroless compatibility
|
2020-05-27 11:19:43 -04:00
|
|
|
HEALTHCHECK --interval=30s --timeout=10s \
|
2025-06-03 13:52:13 -04:00
|
|
|
CMD ["/mattermost/bin/mmctl", "system", "status", "--local"]
|
2019-07-17 09:02:10 -04:00
|
|
|
|
2024-04-17 08:19:59 -04:00
|
|
|
# Configure entrypoint and command with proper permissions
|
2019-07-17 09:02:10 -04:00
|
|
|
WORKDIR /mattermost
|
2025-06-03 13:52:13 -04:00
|
|
|
CMD ["/mattermost/bin/mattermost"]
|
2019-07-17 09:02:10 -04:00
|
|
|
|
|
|
|
|
EXPOSE 8065 8067 8074 8075
|
|
|
|
|
|
|
|
|
|
# Declare volumes for mount point directories
|
|
|
|
|
VOLUME ["/mattermost/data", "/mattermost/logs", "/mattermost/config", "/mattermost/plugins", "/mattermost/client/plugins"]
|