-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for building as Docker container
- Loading branch information
Showing
1 changed file
with
21 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,21 @@ | ||
FROM ubuntu:18.04 AS antbuild | ||
|
||
RUN apt-get update && apt-get -y install default-jre make | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
|
||
RUN make parser | ||
|
||
|
||
FROM ubuntu:18.04 AS runtime | ||
|
||
RUN apt-get update && apt-get -y install git python python-pip | ||
RUN pip install clint | ||
|
||
WORKDIR /app | ||
COPY --from=antbuild /app /app | ||
|
||
ENV PATH "/app:${PATH}" | ||
|
||
ENTRYPOINT ["bkl"] |