mirror of
https://github.com/valitydev/fistful-server.git
synced 2024-11-06 02:35:18 +00:00
2a73c73d9b
* Drop unused macros / includes * Drop testcase relevant to legacy routing only * Adapt SUT setup to work w/o legacy routing While also ensuring that domain config does not spill into `ct_domain` helper module. * Sync Dockerfile w/ valitydev/erlang-templates * Bump to valitydev/party-client-erlang@31850a6 * Switch to valitydev/party-management@f757b79 in testenv * Add couple identity suite testcases
18 lines
424 B
Docker
18 lines
424 B
Docker
ARG OTP_VERSION
|
|
|
|
FROM docker.io/library/erlang:${OTP_VERSION}
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# 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"]
|