Compare commits

...

3 Commits

3 changed files with 27 additions and 4 deletions

26
.github/workflows/starter-docker.yml vendored Normal file
View File

@ -0,0 +1,26 @@
# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Starter Docker
uses: CUBETIQ/starter-docker-actions@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_SECRET }}
-
name: Checkout
uses: actions/checkout@v2
-
name: Build and Push from Makefile
run: |
make build

View File

@ -107,4 +107,4 @@ RUN echo "All has been completed, enjoy!"
ENV JAVA_HOME=/opt/java/openjdk \
PATH="/opt/java/openjdk/bin:$PATH"
ENTRYPOINT [ "./entrypoint.sh" ]
CMD [ "java", "-version" ]

View File

@ -1,3 +0,0 @@
#!/bin/bash
echo "Openjdk java runtime on calpine os linux"