mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-05 04:17:26 +08:00
[+] Add Dockerfile and devcontainer configuration for AquaDX development environment
This commit is contained in:
20
.devcontainer/Dockerfile
Normal file
20
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM gradle:8.8.0-jdk21
|
||||
|
||||
ENV NODE_VERSION=22
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y curl && \
|
||||
curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && \
|
||||
apt-get install -y nodejs && \
|
||||
npm install -g npm@latest
|
||||
|
||||
RUN npm install -g bun
|
||||
|
||||
RUN apt-get install -y maven
|
||||
|
||||
RUN gradle --version && \
|
||||
node --version && \
|
||||
npm --version && \
|
||||
bun --version
|
||||
|
||||
WORKDIR /workspace
|
||||
Reference in New Issue
Block a user