mochiweb.dockerfile 242 B

1234567891011
  1. FROM erlang:23
  2. ADD ./ /mochiweb
  3. WORKDIR /mochiweb
  4. RUN rebar get-deps
  5. RUN rebar compile
  6. EXPOSE 8080
  7. CMD erl +K true +sbwt very_long +swt very_low -pa ebin deps/*/ebin -boot start_sasl -config priv/app.config -s mochiweb_bench_app -noshell