Fix syntax error in Dockerfile

This commit is contained in:
rubenwardy 2020-01-16 18:50:19 +00:00
부모 680aaa1bd5
커밋 6d472b1840
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -15,7 +15,7 @@ RUN mkdir -p /usr/src/minetest/cmakebuild && cd /usr/src/minetest/cmakebuild &&
.. && \
make -j2 && \
rm -Rf ../games/minetest_game && git clone --depth 1 https://github.com/minetest/minetest_game ../games/minetest_game && \
rm -Rf ../games/minetest_game/.git
rm -Rf ../games/minetest_game/.git && \
make install
FROM debian:stretch