diff --git a/.dockerignore b/.dockerignore index ce9da1b1..3cb82b19 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,16 +1,18 @@ .git/ -.gitignore .github/ .idea/ +.vscode/ +.gitignore +.editorconfig .env -Dockerfile docker-compose.yml +Dockerfile LICENSE -VERSION README.md bin/ docs/ +release/ assets/games/ diff --git a/Dockerfile b/Dockerfile index 8b65f95c..8a7d8dbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,10 +41,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ COPY --from=build ${BUILD_PATH}/bin/ ./ RUN cp -s $(pwd)/* /usr/local/bin -COPY web ./web -COPY assets/cores/*.so \ - assets/cores/*.cfg \ - ./assets/cores/ +COPY assets/cores ./assets/cores COPY configs ./configs +COPY web ./web EXPOSE 8000 9000