mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
Fix builder error
We need to first populate the apt sources before installing anything. It was working on my machine because the layer was cached. After I purged all images I was able to replicate the same error message. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=251918035
This commit is contained in:
parent
c3c3520e04
commit
54e9aa6e9d
1 changed files with 1 additions and 1 deletions
|
@ -14,10 +14,10 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
apt-get update -y
|
||||||
apt-get install locales -y
|
apt-get install locales -y
|
||||||
locale-gen en_US.UTF-8
|
locale-gen en_US.UTF-8
|
||||||
apt-get install apt-utils -y
|
apt-get install apt-utils -y
|
||||||
apt-get update -y
|
|
||||||
apt-get upgrade -y
|
apt-get upgrade -y
|
||||||
# Install Java
|
# Install Java
|
||||||
apt-get install openjdk-8-jdk-headless -y
|
apt-get install openjdk-8-jdk-headless -y
|
||||||
|
|
Loading…
Add table
Reference in a new issue