fix
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Juanjo Gutiérrez 2025-03-28 17:38:11 +01:00
parent 8171f9666a
commit 71d6825603
No known key found for this signature in database
GPG key ID: 2EE7726C7CA75D4E
2 changed files with 8 additions and 8 deletions

View file

@ -9,11 +9,11 @@ platform:
steps:
- name: prepare workspace
image: alpine
image: alpine:3.21
commands:
- rm -fr build_dir
- name: build hermes
image: alpine
image: alpine:3.21
commands:
- apk add -t hermes-build-deps --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt-dev
- cmake -B build_dir -D BUILD_DOCS=ON
@ -35,11 +35,11 @@ platform:
steps:
- name: prepare workspace
image: alpine
image: alpine:3.21
commands:
- rm -fr build_dir
- name: build hermes
image: alpine
image: alpine:3.21
commands:
- apk add -t hermes-build-deps --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt-dev
- cmake -B build_dir

View file

@ -1,14 +1,14 @@
FROM alpine:3.18
FROM alpine:3.21
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 apk add --no-cache graphviz doxygen gcc make openssl-dev libspf2-dev cmake g++ sqlite-dev gettext-dev python3 boost-dev fmt
RUN cmake -B build
RUN cmake --build build
RUN mkdir /hermes-installation
RUN cmake --install build --prefix /hermes-installation
FROM alpine:3.18
FROM alpine:3.21
EXPOSE 25
COPY --from=0 /hermes-installation /hermes
RUN apk add --no-cache openssl libspf2 sqlite-libs libstdc++ libgcc fmt
RUN apk add --no-cache openssl libspf2 sqlite-libs libstdc++ libgcc
CMD ["/hermes/bin/hermes", "/config/hermesrc"]