File tree Expand file tree Collapse file tree 3 files changed +39
-3
lines changed
bulk-export/bulk-export-task-execution/docker
ingest/ingest-runner/docker
system-test/system-test-data-generation/docker Expand file tree Collapse file tree 3 files changed +39
-3
lines changed Original file line number Diff line number Diff line change 1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- FROM amazoncorretto:17-al2023-headless
14+ FROM ubuntu:24.04
15+
16+ # Install Amazon Corretto JDK
17+ RUN apt-get update && apt-get install -y \
18+ ca-certificates \
19+ curl \
20+ gnupg
21+ RUN curl -fsSL https://apt.corretto.aws/corretto.key | gpg --dearmor --yes -o /etc/apt/keyrings/corretto-keyring.gpg
22+ RUN echo "deb [signed-by=/etc/apt/keyrings/corretto-keyring.gpg] https://apt.corretto.aws stable main" \
23+ | tee /etc/apt/sources.list.d/corretto.list > /dev/null
24+ RUN apt-get update && apt-get install -y \
25+ java-17-amazon-corretto-jdk \
26+ && rm -rf /var/lib/apt/lists/*
1527
1628COPY bulk-export-task-execution.jar /bulk-export-task-execution.jar
1729COPY run.sh /run.sh
Original file line number Diff line number Diff line change 1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- FROM amazoncorretto:17-al2023-headless
14+ FROM ubuntu:24.04
15+
16+ # Install Amazon Corretto JDK
17+ RUN apt-get update && apt-get install -y \
18+ ca-certificates \
19+ curl \
20+ gnupg
21+ RUN curl -fsSL https://apt.corretto.aws/corretto.key | gpg --dearmor --yes -o /etc/apt/keyrings/corretto-keyring.gpg
22+ RUN echo "deb [signed-by=/etc/apt/keyrings/corretto-keyring.gpg] https://apt.corretto.aws stable main" \
23+ | tee /etc/apt/sources.list.d/corretto.list > /dev/null
24+ RUN apt-get update && apt-get install -y \
25+ java-17-amazon-corretto-jdk \
26+ && rm -rf /var/lib/apt/lists/*
1527
1628COPY ingest.jar /ingest.jar
1729COPY run.sh /run.sh
Original file line number Diff line number Diff line change 1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- FROM amazoncorretto:17-al2023-headless
14+ FROM ubuntu:24.04
15+
16+ # Install Amazon Corretto JDK
17+ RUN apt-get update && apt-get install -y \
18+ ca-certificates \
19+ curl \
20+ gnupg
21+ RUN curl -fsSL https://apt.corretto.aws/corretto.key | gpg --dearmor --yes -o /etc/apt/keyrings/corretto-keyring.gpg
22+ RUN echo "deb [signed-by=/etc/apt/keyrings/corretto-keyring.gpg] https://apt.corretto.aws stable main" \
23+ | tee /etc/apt/sources.list.d/corretto.list > /dev/null
24+ RUN apt-get update && apt-get install -y \
25+ java-17-amazon-corretto-jdk \
26+ && rm -rf /var/lib/apt/lists/*
1527
1628COPY system-test.jar /system-test.jar
1729COPY run.sh /run.sh
You can’t perform that action at this time.
0 commit comments