blob: 727ffa68d044b1ad45a8ecb87b795ee850d9ab84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
FROM erlang:19.3
MAINTAINER tommy at research dot eh tee tee dot com
ENV TERM=xterm
#copy files into repo
ADD src /tmp/src
ADD test /tmp/test
ADD rebar.config /tmp
ADD entry.sh /tmp
ADD config /tmp/config
WORKDIR /tmp
#make sure there is no leftover release
RUN rm -rf _build/
#build
RUN rebar3 upgrade
RUN rebar3 release
#fail the docker build if unit tests fail
RUN rebar3 eunit
#set the broker test type so the integration test can be run inside Docker
ENV BROKER_TEST_TYPE=DOCKER
#run
EXPOSE 7777
ENTRYPOINT ["/tmp/entry.sh"]
|