mirror of
https://github.com/valitydev/dominant.git
synced 2024-11-06 02:25:17 +00:00
7c026e2973
* TD-6: Add new CI * Use wc-* and wdeps-test * Remove set up of thrift and BEAM in CI * Check TARGETARCH content * Change to compose v1 * Try to check arch again * Add default ARCH and move back to compose v2 * Replace TARGETARCH with BUILDARCH * Enable Buildkit * Add rebar3_lint plugin * Diagnose lint * Change CI order * Make wdeps-* work * Revert some elvis.config changes * Fix lint * Parallelize CI * Change artifact name * Move plt cache to dialyzer job * Fix test * Review fixes * Use --use-aliases alternative * Remove echo arch from Dockerfile
14 lines
330 B
Docker
14 lines
330 B
Docker
ARG ERLANG_VERSION
|
|
|
|
FROM docker.io/library/erlang:${ERLANG_VERSION}
|
|
|
|
ARG THRIFT_VERSION
|
|
ARG BUILDARCH
|
|
|
|
RUN wget -q -O- "https://github.com/valitydev/thrift/releases/download/${THRIFT_VERSION}/thrift-${THRIFT_VERSION}-linux-${BUILDARCH}.tar.gz" \
|
|
| tar -xvz -C /usr/local/bin/
|
|
|
|
ENV CHARSET=UTF-8
|
|
ENV LANG=C.UTF-8
|
|
CMD /bin/bash
|