File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ sourceFileExtensions:
44 - gradle
55 - java
66 - sh
7+ - Dockerfile
78allowedCopyrightHolders :
89 - Google LLC
Original file line number Diff line number Diff line change @@ -47,6 +47,10 @@ spotless {
4747 target " *.yaml"
4848 licenseHeaderFile rootProject. file(' buildscripts/spotless.license.yaml' ), ' ([a-zA-Z]*:)'
4949 }
50+ format ' dockerfile' , {
51+ target ' *Dockerfile'
52+ licenseHeaderFile rootProject. file(' buildscripts/spotless.license.dockerfile' ), ' (\\ s+|FROM)'
53+ }
5054}
5155
5256// Configure release mechanism.
Original file line number Diff line number Diff line change 1+ # Copyright 2023 Google LLC
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
Original file line number Diff line number Diff line change 1-
2- # Copyright 2021 Google
1+ # Copyright 2023 Google LLC
32#
43# Licensed under the Apache License, Version 2.0 (the "License");
54# you may not use this file except in compliance with the License.
65# You may obtain a copy of the License at
76#
8- # https ://www.apache.org/licenses/LICENSE-2.0
7+ # http ://www.apache.org/licenses/LICENSE-2.0
98#
109# Unless required by applicable law or agreed to in writing, software
1110# distributed under the License is distributed on an "AS IS" BASIS,
@@ -23,4 +22,4 @@ RUN gradle :e2e-test-server:build
2322FROM openjdk:11-jre-slim
2423COPY --from=builder /app/src/e2e-test-server/build/libs/*-all.jar /app/app.jar
2524WORKDIR /app
26- CMD java -jar app.jar
25+ CMD java -jar app.jar
You can’t perform that action at this time.
0 commit comments