1
0

test_env_template 191 B

123456789101112
  1. FROM $base_image
  2. $epel_pkg
  3. $infra_repo
  4. RUN $pkg_mgr install -y $pkg_list \
  5. && $pkg_mgr clean all
  6. ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
  7. WORKDIR /code
  8. ENTRYPOINT ["/code/runtests.sh"]
  9. CMD []