hermes/Dockerfile
Juanjo Gutiérrez 8171f9666a
Some checks failed
continuous-integration/drone/push Build is failing
Add fmt library as dependency
Add fmt-dev to build dependencies and fmt to runtime dependencies in Dockerfile and drone pipeline. This modern C++ formatting library will be used for improved string formatting and logging.
2025-03-28 17:35:13 +01:00

14 lines
499 B
Docker

FROM alpine:3.18
ADD . /hermes
WORKDIR /hermes
RUN apk add --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt-dev
RUN cmake -B build
RUN cmake --build build
RUN mkdir /hermes-installation
RUN cmake --install build --prefix /hermes-installation
FROM alpine:3.18
EXPOSE 25
COPY --from=0 /hermes-installation /hermes
RUN apk add --no-cache openssl libspf2 sqlite-libs libstdc++ libgcc fmt
CMD ["/hermes/bin/hermes", "/config/hermesrc"]