forked from airbytehq/airbyte
-
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.
Always push the latest master images to dockerhub (airbytehq#207)
- Loading branch information
1 parent
2208ad1
commit e43af2d
Showing
6 changed files
with
53 additions
and
28 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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.gradle | ||
.idea | ||
build | ||
!tools/build | ||
.DS_Store | ||
dataline-db/pg_data/* | ||
data |
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
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
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,20 @@ | ||
##################### | ||
# Setup build image # | ||
##################### | ||
FROM ubuntu:20.04 | ||
|
||
LABEL io.dataline.image=datalineio/build-base | ||
LABEL io.dataline.version=1.0.0 | ||
|
||
WORKDIR /code | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install tools | ||
RUN apt-get update && apt-get -y install curl | ||
|
||
# Setup Node & Java | ||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - | ||
RUN apt-get update && apt-get -y install \ | ||
nodejs \ | ||
openjdk-14-jdk |
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,6 @@ | ||
This docker image contains the build environment used to generate all our artifacts. | ||
|
||
If you need to do some changes the environment: | ||
1. Bump up the version in the docker file (`io.dataline.version`). | ||
1. Build and push the image (with the new tag). | ||
1. Update the consumers to use the most recent build image. |