aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/Dockerfile
blob: 295b3ff6b99df0209582f7d57e67d312327f75b1 (plain) (tree)
1
2
3
4
5
6
7
8





                              
                                                                                 
 


                          
 
                      



                      





                                      









                                                      
                                   


                               
                     
FROM alpine:3.16 AS base

ARG install_dir="/app/install"

FROM base AS builder

RUN apk add --no-cache bash bsd-compat-headers build-base clang cmake libgit2-dev

ARG C_COMPILER=clang
ARG BUILD_TYPE=Release
ARG DEFAULT_HOST=127.0.0.1

ARG src_dir="/app/src"
ARG install_dir

COPY [".", "$src_dir"]

RUN cd -- "$src_dir" && \
    make install \
        "C_COMPILER=$C_COMPILER" \
        "BUILD_TYPE=$BUILD_TYPE" \
        "DEFAULT_HOST=$DEFAULT_HOST" \
        "INSTALL_PREFIX=$install_dir"

FROM base

LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"

RUN apk add --no-cache tini libgit2

ARG install_dir
COPY --from=builder ["$install_dir", "$install_dir"]

ENV PATH="$install_dir/bin:${PATH}"
WORKDIR "$install_dir/bin"

ENTRYPOINT ["/sbin/tini", "--"]
CMD ["cimple-server"]