Skip to content

Commit

Permalink
Fix ip command not found
Browse files Browse the repository at this point in the history
  • Loading branch information
xMikux authored Jan 6, 2024
1 parent 59a9e2a commit 6949fe9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Java/GraalVM/11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM container-registry.oracle.com/graalvm/jdk-ee:ol9-java11-22

RUN apt-get update -y && \
apt-get install -y iproute2 && \
useradd -d /home/container -m container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
Expand Down
4 changes: 4 additions & 0 deletions Java/GraalVM/17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM container-registry.oracle.com/graalvm/jdk-ee:ol9-java17-22

RUN apt-get update -y && \
apt-get install -y iproute2 && \
useradd -d /home/container -m container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
Expand Down
4 changes: 4 additions & 0 deletions Java/GraalVM/8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM container-registry.oracle.com/graalvm/jdk-ee:ol9-java8-21

RUN apt-get update -y && \
apt-get install -y iproute2 && \
useradd -d /home/container -m container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
Expand Down

0 comments on commit 6949fe9

Please sign in to comment.