Skip to content

Commit 015bd35

Browse files
Add files via upload
1 parent cb470ab commit 015bd35

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian:9.5-slim
2+
3+
LABEL "com.github.actions.name"="Android Github Action"
4+
LABEL "com.github.actions.description"="Android Github Action that build Android project, set up JDK 1.8, run unit tests and build debug APK."
5+
LABEL "com.github.actions.icon"="box"
6+
LABEL "com.github.actions.color"="green"
7+
8+
LABEL "repository"="https://github.com/Vukan-Markovic/Chat-rooms"
9+
LABEL "homepage"="https://github.com/Vukan-Markovic/Chat-rooms"
10+
LABEL "maintainer"="Vukan-Markovic <vukan.markovic97@gmail.com>"
11+
12+
ADD entrypoint.sh /entrypoint.sh
13+
RUN chmod +x /entrypoint.sh
14+
ENTRYPOINT ["/entrypoint.sh"]

entrypoint.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
set -eu
4+
5+
sh -c "$*"

0 commit comments

Comments
 (0)