Skip to content

Commit c90214f

Browse files
committed
Installing xargs for docker image for Gradle 8.4
1 parent b9860c7 commit c90214f

File tree

2 files changed

+145
-0
lines changed

2 files changed

+145
-0
lines changed

.dockerignore

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
src-docs/node_modules/
2+
3+
### Intellij ###
4+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
5+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
6+
7+
# User-specific stuff
8+
.idea/**/workspace.xml
9+
.idea/**/tasks.xml
10+
.idea/**/usage.statistics.xml
11+
.idea/**/dictionaries
12+
.idea/**/shelf
13+
14+
# Generated files
15+
.idea/**/contentModel.xml
16+
17+
# Sensitive or high-churn files
18+
.idea/**/dataSources/
19+
.idea/**/dataSources.ids
20+
.idea/**/dataSources.local.xml
21+
.idea/**/sqlDataSources.xml
22+
.idea/**/dynamic.xml
23+
.idea/**/uiDesigner.xml
24+
.idea/**/dbnavigator.xml
25+
26+
# Gradle
27+
.idea/**/gradle.xml
28+
.idea/**/libraries
29+
30+
# Gradle and Maven with auto-import
31+
# When using Gradle or Maven with auto-import, you should exclude module files,
32+
# since they will be recreated, and may cause churn. Uncomment if using
33+
# auto-import.
34+
# .idea/modules.xml
35+
# .idea/*.iml
36+
# .idea/modules
37+
.idea/
38+
39+
40+
# CMake
41+
cmake-build-*/
42+
43+
# Mongo Explorer plugin
44+
.idea/**/mongoSettings.xml
45+
46+
# File-based project format
47+
*.iws
48+
49+
# IntelliJ
50+
out/
51+
52+
# mpeltonen/sbt-idea plugin
53+
.idea_modules/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Cursive Clojure plugin
59+
.idea/replstate.xml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
fabric.properties
66+
67+
# Editor-based Rest Client
68+
.idea/httpRequests
69+
70+
# Android studio 3.1+ serialized cache file
71+
.idea/caches/build_file_checksums.ser
72+
73+
### Intellij Patch ###
74+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
75+
76+
# *.iml
77+
# modules.xml
78+
# .idea/misc.xml
79+
# *.ipr
80+
81+
# Sonarlint plugin
82+
.idea/sonarlint
83+
84+
### Java ###
85+
# Compiled class file
86+
*.class
87+
88+
# Log file
89+
*.log
90+
91+
# BlueJ files
92+
*.ctxt
93+
94+
# Mobile Tools for Java (J2ME)
95+
.mtj.tmp/
96+
97+
# Package Files #
98+
*.jar
99+
*.war
100+
*.nar
101+
*.ear
102+
*.zip
103+
*.tar.gz
104+
*.rar
105+
106+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
107+
hs_err_pid*
108+
109+
### Maven ###
110+
target/
111+
pom.xml.tag
112+
pom.xml.releaseBackup
113+
pom.xml.versionsBackup
114+
pom.xml.next
115+
release.properties
116+
dependency-reduced-pom.xml
117+
buildNumber.properties
118+
.mvn/timing.properties
119+
.mvn/wrapper/maven-wrapper.jar
120+
121+
### Gradle ###
122+
.gradle
123+
/build/
124+
swagger-brake/build/
125+
swagger-brake-cli/build/
126+
swagger-brake-integration-tests/build/
127+
128+
# Ignore Gradle GUI config
129+
gradle-app.setting
130+
131+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
132+
!gradle-wrapper.jar
133+
134+
# Cache of project
135+
.gradletasknamecache
136+
137+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
138+
# gradle/wrapper/gradle-wrapper.properties
139+
140+
### Gradle Patch ###
141+
**/build/
142+
143+
144+
# End of https://www.gitignore.io/api/java,maven,gradle,intellij

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Build
22
FROM openjdk:17.0.2-jdk as baseimage
33

4+
RUN microdnf install findutils
45
WORKDIR swagger-brake
56
COPY . .
67
RUN sh gradlew clean build shadowJar -x test

0 commit comments

Comments
 (0)