From c7973656415b5049406b31363ef2fbb5890a6430 Mon Sep 17 00:00:00 2001 From: Sergey Stepanov Date: Sun, 2 Apr 2023 22:32:14 +0300 Subject: [PATCH] Fix Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fffa3ba9..b9e6fb83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,13 +48,13 @@ COPY scripts/install.sh install.sh RUN bash install.sh && \ rm -rf /var/lib/apt/lists/* install.sh +COPY --from=build ${BUILD_PATH}/bin/ ./ +RUN cp -s $(pwd)/* /usr/local/bin RUN mkdir -p ./assets/cache && \ mkdir -p ./assets/cores && \ mkdir -p ./assets/games && \ mkdir -p ./libretro && \ mkdir -p /root/.cr -COPY --from=build ${BUILD_PATH}/bin/ ./ -RUN cp -s $(pwd)/* /usr/local/bin COPY assets/cores ./assets/cores COPY configs ./configs COPY web ./web