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.
|
- FROM rack:env
- ENV VCV_RACK_DIR=/build/Rack
- RUN mkdir -p "${VCV_RACK_DIR}" \
- && git clone -n https://github.com/VCVRack/Rack.git "${VCV_RACK_DIR}" || true \
- && cd "${VCV_RACK_DIR}" \
- && git checkout master \
- && git pull \
- && git submodule update --init --recursive \
- && make dep > /dev/null
|