mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
11 lines
255 B
Bash
11 lines
255 B
Bash
#!/bin/bash
|
|
|
|
# Exit on error
|
|
set -e
|
|
|
|
# Update package list and install OpenJDK 11
|
|
DEBIAN_FRONTEND=noninteractive apt-get update && \
|
|
apt-get install -y --no-install-recommends openjdk-11-jdk && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|