Dockerfile-Allinone 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. FROM openjdk:11 as builder
  2. ENV MAVEN_VERSION=3.9.5 \
  3. GRADLE_VERSION=7.3.3
  4. RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
  5. RUN sed -i s@/security.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
  6. RUN apt-get update
  7. # install gradle
  8. RUN wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
  9. RUN unzip -d /opt/gradle /tmp/gradle-*.zip && rm -rf /tmp/gradle-*.zip
  10. ENV GRADLE_HOME=/opt/gradle/gradle-${GRADLE_VERSION}
  11. ENV PATH=$PATH:$GRADLE_HOME/bin
  12. # install maven
  13. RUN wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip -P /tmp
  14. RUN unzip -d /opt/maven /tmp/apache-maven-*.zip
  15. ENV MAVEN_HOME=/opt/maven/apache-maven-${MAVEN_VERSION}
  16. ENV PATH=$PATH:$MAVEN_HOME/bin
  17. # install python3.8
  18. # RUN apt-get update && \
  19. # apt-get install -y python3.8
  20. RUN mkdir -p ~/.pip
  21. RUN echo '\n\
  22. [global] \n\
  23. trusted-host=mirrors.aliyun.com \n\
  24. index-url=https://mirrors.aliyun.com/pypi/simple/ \n\
  25. ' > ~/.pip/pip.conf
  26. RUN wget http://fileshare.yoqi.me/d/DevFiles/Develop/Python/get-pip.py?sign=17C5fjx9l5VpBJ6FCHonje5nEEkylSINsPlKsASVkRc=:1702263152 -O get-pip.py
  27. RUN python3 get-pip.py
  28. # install go1.21
  29. RUN wget https://go.dev/dl/go1.21.4.linux-amd64.tar.gz && \
  30. tar -C /usr/local -xzf go1.21.4.linux-amd64.tar.gz
  31. ENV PATH=$PATH:/usr/local/go/bin
  32. RUN export GOPROXY="https://goproxy.io,direct"
  33. # install nodejs20
  34. RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
  35. RUN apt-get install -y nodejs
  36. RUN npm config set registry http://registry.npm.taobao.org --global
  37. RUN npm install yarn pnpm
  38. LABEL email="liuyuqi<liuyuqi.gov@msn.cn>"
  39. WORKDIR /workspaces
  40. # RUN mvn package
  41. RUN apt-get install -y wget unzip openssh-server
  42. RUN ln -s /usr/bin/python3.9 /usr/bin/python
  43. # 指定字符集支持命令行输入中文(根据需要选择字符集)
  44. ENV LANG C.UTF-8
  45. ENV LANGUAGE C.UTF-8
  46. # set path
  47. RUN echo '\n\
  48. export PATH=$PATH:$GRADLE_HOME/bin \n\
  49. export JAVA_HOME=/usr/local/openjdk-11 \n\
  50. export PATH=$PATH:$JAVA_HOME/bin \n\
  51. export PATH=$PATH:$MAVEN_HOME/bin \n\
  52. export PATH=$PATH:/usr/local/go/bin \n\
  53. export GOPROXY="https://goproxy.io,direct" \n\
  54. ' >> ~/.bashrc
  55. # install vscode and extension
  56. RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
  57. code-server --install-extension redhat.vscode-yaml &&\
  58. code-server --install-extension orta.vscode-jest &&\
  59. code-server --install-extension dbaeumer.vscode-eslint &&\
  60. code-server --install-extension ms-python.python &&\
  61. code-server --install-extension ms-azuretools.vscode-docker &&\
  62. code-server --install-extension mhutchie.git-graph &&\
  63. code-server --install-extension ardisaurus.gitflow-actions-sidebar &&\
  64. code-server --install-extension golang.go &&\
  65. code-server --install-extension Vue.volar &&\
  66. code-server --install-extension eamodio.gitlens &&\
  67. echo done
  68. VOLUME [ "/workspaces" ]
  69. CMD [ "/bin/bash" ]