Skip to content

Commit

Permalink
[DSD-5234] Added alpine Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: syed salman <[email protected]>
  • Loading branch information
syedsalman3753 committed May 20, 2024
1 parent 0e25219 commit d0fc0bb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
SERVICE_NAME: 'openjdk-17-jre'
- SERVICE_LOCATION: 'openjdk/21-jre'
SERVICE_NAME: 'openjdk-21-jre'
- SERVICE_LOCATION: 'alpine'
SERVICE_NAME: 'alpine'
fail-fast: false
name: ${{ matrix.SERVICE_NAME }}
uses: mosip/kattu/.github/workflows/docker-build.yml@master
Expand Down
14 changes: 14 additions & 0 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM alpine:edge

ARG SOURCE
ARG COMMIT_HASH
ARG COMMIT_ID
ARG BUILD_TIME
LABEL source=${SOURCE}
LABEL commit_hash=${COMMIT_HASH}
LABEL commit_id=${COMMIT_ID}
LABEL build_time=${BUILD_TIME}

# Install mc and its dependencies
RUN apk update && \
apk --no-cache add curl

0 comments on commit d0fc0bb

Please sign in to comment.