You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN npm install -g @aws/pdk aws-cdk bun pnpm projen yarn
11
+
12
+
# Poetry setup
13
+
RUN curl -sSL https://install.python-poetry.org | python
14
+
ENV PATH="/root/.local/bin:$PATH"
15
+
16
+
# JDK
17
+
RUN dnf -y install java-17-amazon-corretto-devel
18
+
19
+
# Graphviz
20
+
RUN dnf -y install graphviz
21
+
22
+
# License Finder
23
+
RUN dnf -y install rubygems ruby
24
+
RUN gem install license_finder
25
+
26
+
# Open API Generator
27
+
RUN mkdir -p ~/.open-api-generator-cli
28
+
RUN curl https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar -o ~/.open-api-generator-cli/6.3.0.jar
29
+
RUN curl https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.1.0/openapi-generator-cli-7.1.0.jar -o ~/.open-api-generator-cli/7.1.0.jar
30
+
RUN curl https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.6.0/openapi-generator-cli-6.6.0.jar -o ~/.open-api-generator-cli/6.6.0.jar
0 commit comments