test
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
mol
2024-07-06 22:23:31 +08:00
parent 08173d8497
commit 263cb5ef03
1663 changed files with 526884 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM ubuntu
EXPOSE 8080
EXPOSE 22
USER root
WORKDIR /app/code
VOLUME [ "/mnt/project" ]
RUN wget https://update.code.visualstudio.com/latest/server-linux-x64-web/stable && \
tar zxvf vscode-server-linux-x64-web.tar.gz
ENTRYPOINT ['/app/code/vscode-server-linux-x64-web/bind/code-server', '--host', '0.0.0.0', '--port', '8080']