mirror of
https://github.com/valitydev/cds.git
synced 2024-11-06 01:45:24 +00:00
b5e2055cb4
* Drop proprietary CI stuff * Drop damsel dependency * Switch to deps valitydev upstreams * Drop backward compitibility tests * Drop `how_are_you` altogether * Move prometheus into production-only deps
25 lines
597 B
Docker
25 lines
597 B
Docker
ARG OTP_VERSION
|
|
|
|
FROM docker.io/library/erlang:${OTP_VERSION}
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Install cmake
|
|
RUN apt-get --yes update \
|
|
&& apt-get --yes --no-install-recommends install \
|
|
cmake \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install thrift compiler
|
|
ARG THRIFT_VERSION
|
|
ARG TARGETARCH
|
|
RUN wget -q -O- "https://github.com/valitydev/thrift/releases/download/${THRIFT_VERSION}/thrift-${THRIFT_VERSION}-linux-${TARGETARCH}.tar.gz" \
|
|
| tar -xvz -C /usr/local/bin/
|
|
|
|
# Set env
|
|
ENV CHARSET=UTF-8
|
|
ENV LANG=C.UTF-8
|
|
|
|
# Set runtime
|
|
CMD ["/bin/bash"]
|