Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドッカーで私はこれをしたい:
git clone XYZ cd XYZ make XYZ
ただし、cd コマンドがないため、毎回フル パスを渡す必要があります (make XYZ /fullpath)。これに対する良い解決策はありますか?
それらすべてに対して単一のRUNコマンドを使用できます
RUN git clone XYZ && \ cd XYZ && \ make XYZ