hierarchy-with-root
root-prefix =
GLOBAL_root-output =
:terminal
int root_code_block = 1;some comments
Java
java-prefix =
JAVA_
Maven Config
maven-name =
maven
<settings>
<mirrors>
</mirrors>
</settings>Gradle Config
repositories {
maven { url 'https://example.com' }
}Python
python-prefix =
PYTHON_
pip config
pip config set global.index-url https://example.comconda config
language =
yaml
channels:
- https://example.com/condaDocker
Dockerfile
FROM ubuntu:20.04
RUN echo "Hello World"Multi-stage Build
FROM node:16 AS builder
WORKDIR /app
COPY . .
RUN npm install