Spaces:
Sleeping
Sleeping
| FROM codercom/code-server:latest | |
| USER root | |
| # حذف node قدیمی (در صورت وجود) | |
| RUN apt remove -y nodejs npm || true | |
| # نصب Node 22 رسمی | |
| RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \ | |
| apt install -y nodejs | |
| # تست نسخه | |
| RUN node -v && npm -v | |
| ENV PASSWORD=1234 | |
| WORKDIR /home/coder/project | |
| EXPOSE 7860 | |
| CMD ["code-server", "--bind-addr", "0.0.0.0:7860", "--auth", "password"] |