Skip to content

Commit 2200f35

Browse files
πŸ”„ Synced file(s) with valitydev/configurations (#10)
* πŸ”„ Created local '.github/workflows/basic-linters.yml' from remote 'workflows/base/basic-linters.yml' * πŸ”„ Synced local 'LICENSE' with remote 'LICENSE' * πŸ”„ Created local '.github/settings.yml' from remote '.github/settings.yml' * Fix hadolint checks Co-authored-by: Pavel Popov <[email protected]>
1 parent 21666f4 commit 2200f35

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

β€Ž.github/settings.ymlβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
2+
_extends: .github
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Vality basic linters
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "*"
7+
8+
jobs:
9+
lint:
10+
uses: valitydev/base-workflows/.github/workflows/basic-linters.yml@v1

β€ŽLICENSEβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@
173173
incurred by, or claims asserted against, such Contributor by reason
174174
of your accepting any such warranty or additional liability.
175175

176-
END OF TERMS AND CONDITIONS
176+
END OF TERMS AND CONDITIONS

β€Žsrc/main/resources/Dockerfileβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ FROM eclipse-temurin:17
22

33
RUN useradd -s /bin/false -U -u 20000 vality
44

5-
COPY --chown=vality:vality @artifactId@-@version@.jar /opt/@artifactId@/@artifactId@.jar
5+
COPY --chown=vality:vality ${artifactId}-${version}.jar /opt/${artifactId}/${artifactId}.jar
66

77
USER vality:vality
88

99
CMD ["java", "-jar","/opt/@artifactId@/@[email protected]"]
1010

11-
EXPOSE @exposed.ports@
11+
EXPOSE ${exposed.ports}
1212

13-
WORKDIR /opt/@artifactId@
13+
WORKDIR /opt/${artifactId}

0 commit comments

Comments
Β (0)