diff --git a/.dockerignore b/.dockerignore index bd766633..7cb6b09a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -17,4 +17,7 @@ ENV/ .conda/ README*.md dashboard/ -data/ \ No newline at end of file +data/ +changelogs/ +tests/ +.ruff_cache/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 2bc60833..59ef17d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ WORKDIR /AstrBot COPY . /AstrBot/ RUN apt-get update && apt-get install -y --no-install-recommends \ + nodejs \ + npm \ gcc \ build-essential \ python3-dev \ @@ -28,3 +30,6 @@ EXPOSE 6185 EXPOSE 6186 CMD [ "python", "main.py" ] + + +