mirror of
https://github.com/valitydev/wapi-lib.git
synced 2024-11-06 10:15:17 +00:00
f473bb0781
* APM-107: Handle tokens in digital wallets (#6) * Add valitydev/tds-proto@48bca49 dependency * Rename `api_deadlines` config option * Bump to empayre/swag-wallets@c64e4c9 * Bump to valitydev/bouncer-client-erlang@b6c7be0 # Conflicts: # apps/wapi/test/wapi_destination_tests_SUITE.erl # rebar.lock * fixed after merge * fixed
17 lines
423 B
Docker
17 lines
423 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"] |