forked from apache/seatunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NEP][Dockerfile] add Dockerfile for nep-spark-app build
- Loading branch information
1 parent
5d6b16e
commit 1390fb7
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM openjdk:8-slim-buster AS build | ||
RUN apt update -y && dpkg --purge --force-depends ca-certificates-java | ||
RUN apt install -y ca-certificates-java | ||
RUN apt install -y maven | ||
RUN apt install -y liblzo2-dev | ||
|
||
RUN mkdir /seatunnel | ||
COPY . /seatunnel/ | ||
WORKDIR /seatunnel | ||
RUN ./mvnw install -Dmaven.test.skip -Drevision=2.3.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
docker build -t harbor.nexr.kr/nep/seatunnel-pre-installed:2.3.3 . | ||
docker push harbor.nexr.kr/nep/seatunnel-pre-installed:2.3.3 |