Dockerfile.tarantool.dev_env 363 B

1234567891011121314151617
  1. FROM tarantool/tarantool:3.3.1 AS builder
  2. # install dependencies
  3. RUN apt update && \
  4. apt install -y git unzip cmake tt=2.7.0
  5. # init tt dir structure, create dir for app, create symlink
  6. RUN tt init && \
  7. mkdir app && \
  8. ln -sfn ${PWD}/app/ ${PWD}/instances.enabled/app
  9. # copy cluster configs
  10. COPY tarantool /opt/tarantool/app
  11. # build app
  12. RUN tt build app