You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
302B

  1. FROM rack:env
  2. ENV VCV_RACK_DIR=/build/Rack
  3. RUN mkdir -p "${VCV_RACK_DIR}" \
  4. && git clone -n https://github.com/VCVRack/Rack.git "${VCV_RACK_DIR}" || true \
  5. && cd "${VCV_RACK_DIR}" \
  6. && git checkout master \
  7. && git pull \
  8. && git submodule update --init --recursive \
  9. && make dep > /dev/null