Diff
checker
Text
Text
Images
Documents
Excel
Folders
Legal
Enterprise
Desktop
Pricing
Sign in
Download Diffchecker Desktop
Compare text
Find the difference between two text files
Tools
History
Real-time editor
Hide whitespace changes
Hide unchanged lines
Disable line wrap
Layout
Split
Unified
Diff precision
Smart
Word
Char
Text styles
Change appearance
Syntax highlighting
Choose syntax
Ignore
Transform text
Go to first change
Edit input
Diffchecker Desktop
The most secure way to run Diffchecker. Get the Diffchecker Desktop app: your diffs never leave your computer!
Get Desktop
Untitled diff
Created
9 years ago
Diff never expires
Clear
Export
Share
Explain
2 removals
Lines
Total
Removed
Characters
Total
Removed
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
29 lines
Copy
2 additions
Lines
Total
Added
Characters
Total
Added
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
29 lines
Copy
FROM ubuntu:16.04
FROM ubuntu:16.04
MAINTAINER Dinakar Guniguntala <dinakar.g@in.ibm.com> (@dinogun)
MAINTAINER Dinakar Guniguntala <dinakar.g@in.ibm.com> (@dinogun)
RUN apt-get update \
RUN apt-get update \
&& apt-get install -y --no-install-recommends wget ca-certificates \
&& apt-get install -y --no-install-recommends wget ca-certificates \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
Copy
Copied
Copy
Copied
ENV JAVA_VERSION 1.8.0_sr4fp
6
ENV JAVA_VERSION 1.8.0_sr4fp
5
Copy
Copied
Copy
Copied
RUN ESUM="
d5b1f62eb8db7ce1ccf80165cd27c3c4e21d3ccf5c86dbd6b1df81b2b7947371" \
RUN ESUM="
66655ac736881013f106cd9857bebf5d94608ea2a6fac0d8dcef78db8009b93c" \
&& BASE_URL="https://public.dhe.ibm.com/ibmdl/export/pub/systems/cloud/runtimes/java/meta/" \
&& BASE_URL="https://public.dhe.ibm.com/ibmdl/export/pub/systems/cloud/runtimes/java/meta/" \
&& YML_FILE="sdk/linux/x86_64/index.yml" \
&& YML_FILE="sdk/linux/x86_64/index.yml" \
&& wget -q -U UA_IBM_JAVA_Docker -O /tmp/index.yml $BASE_URL/$YML_FILE \
&& wget -q -U UA_IBM_JAVA_Docker -O /tmp/index.yml $BASE_URL/$YML_FILE \
&& JAVA_URL=$(cat /tmp/index.yml | sed -n '/'$JAVA_VERSION'/{n;p}' | sed -n 's/\s*uri:\s//p' | tr -d '\r') \
&& JAVA_URL=$(cat /tmp/index.yml | sed -n '/'$JAVA_VERSION'/{n;p}' | sed -n 's/\s*uri:\s//p' | tr -d '\r') \
&& wget -q -U UA_IBM_JAVA_Docker -O /tmp/ibm-java.bin $JAVA_URL \
&& wget -q -U UA_IBM_JAVA_Docker -O /tmp/ibm-java.bin $JAVA_URL \
&& echo "$ESUM /tmp/ibm-java.bin" | sha256sum -c - \
&& echo "$ESUM /tmp/ibm-java.bin" | sha256sum -c - \
&& echo "INSTALLER_UI=silent" > /tmp/response.properties \
&& echo "INSTALLER_UI=silent" > /tmp/response.properties \
&& echo "USER_INSTALL_DIR=/opt/ibm/java" >> /tmp/response.properties \
&& echo "USER_INSTALL_DIR=/opt/ibm/java" >> /tmp/response.properties \
&& echo "LICENSE_ACCEPTED=TRUE" >> /tmp/response.properties \
&& echo "LICENSE_ACCEPTED=TRUE" >> /tmp/response.properties \
&& mkdir -p /opt/ibm \
&& mkdir -p /opt/ibm \
&& chmod +x /tmp/ibm-java.bin \
&& chmod +x /tmp/ibm-java.bin \
&& /tmp/ibm-java.bin -i silent -f /tmp/response.properties \
&& /tmp/ibm-java.bin -i silent -f /tmp/response.properties \
&& rm -f /tmp/response.properties \
&& rm -f /tmp/response.properties \
&& rm -f /tmp/index.yml \
&& rm -f /tmp/index.yml \
&& rm -f /tmp/ibm-java.bin
&& rm -f /tmp/ibm-java.bin
ENV JAVA_HOME=/opt/ibm/java/jre \
ENV JAVA_HOME=/opt/ibm/java/jre \
PATH=/opt/ibm/java/bin:$PATH
PATH=/opt/ibm/java/bin:$PATH
Saved diffs
Original text
Open file
FROM ubuntu:16.04 MAINTAINER Dinakar Guniguntala <dinakar.g@in.ibm.com> (@dinogun) RUN apt-get update \ && apt-get install -y --no-install-recommends wget ca-certificates \ && rm -rf /var/lib/apt/lists/* ENV JAVA_VERSION 1.8.0_sr4fp6 RUN ESUM="d5b1f62eb8db7ce1ccf80165cd27c3c4e21d3ccf5c86dbd6b1df81b2b7947371" \ && BASE_URL="https://public.dhe.ibm.com/ibmdl/export/pub/systems/cloud/runtimes/java/meta/" \ && YML_FILE="sdk/linux/x86_64/index.yml" \ && wget -q -U UA_IBM_JAVA_Docker -O /tmp/index.yml $BASE_URL/$YML_FILE \ && JAVA_URL=$(cat /tmp/index.yml | sed -n '/'$JAVA_VERSION'/{n;p}' | sed -n 's/\s*uri:\s//p' | tr -d '\r') \ && wget -q -U UA_IBM_JAVA_Docker -O /tmp/ibm-java.bin $JAVA_URL \ && echo "$ESUM /tmp/ibm-java.bin" | sha256sum -c - \ && echo "INSTALLER_UI=silent" > /tmp/response.properties \ && echo "USER_INSTALL_DIR=/opt/ibm/java" >> /tmp/response.properties \ && echo "LICENSE_ACCEPTED=TRUE" >> /tmp/response.properties \ && mkdir -p /opt/ibm \ && chmod +x /tmp/ibm-java.bin \ && /tmp/ibm-java.bin -i silent -f /tmp/response.properties \ && rm -f /tmp/response.properties \ && rm -f /tmp/index.yml \ && rm -f /tmp/ibm-java.bin ENV JAVA_HOME=/opt/ibm/java/jre \ PATH=/opt/ibm/java/bin:$PATH
Changed text
Open file
FROM ubuntu:16.04 MAINTAINER Dinakar Guniguntala <dinakar.g@in.ibm.com> (@dinogun) RUN apt-get update \ && apt-get install -y --no-install-recommends wget ca-certificates \ && rm -rf /var/lib/apt/lists/* ENV JAVA_VERSION 1.8.0_sr4fp5 RUN ESUM="66655ac736881013f106cd9857bebf5d94608ea2a6fac0d8dcef78db8009b93c" \ && BASE_URL="https://public.dhe.ibm.com/ibmdl/export/pub/systems/cloud/runtimes/java/meta/" \ && YML_FILE="sdk/linux/x86_64/index.yml" \ && wget -q -U UA_IBM_JAVA_Docker -O /tmp/index.yml $BASE_URL/$YML_FILE \ && JAVA_URL=$(cat /tmp/index.yml | sed -n '/'$JAVA_VERSION'/{n;p}' | sed -n 's/\s*uri:\s//p' | tr -d '\r') \ && wget -q -U UA_IBM_JAVA_Docker -O /tmp/ibm-java.bin $JAVA_URL \ && echo "$ESUM /tmp/ibm-java.bin" | sha256sum -c - \ && echo "INSTALLER_UI=silent" > /tmp/response.properties \ && echo "USER_INSTALL_DIR=/opt/ibm/java" >> /tmp/response.properties \ && echo "LICENSE_ACCEPTED=TRUE" >> /tmp/response.properties \ && mkdir -p /opt/ibm \ && chmod +x /tmp/ibm-java.bin \ && /tmp/ibm-java.bin -i silent -f /tmp/response.properties \ && rm -f /tmp/response.properties \ && rm -f /tmp/index.yml \ && rm -f /tmp/ibm-java.bin ENV JAVA_HOME=/opt/ibm/java/jre \ PATH=/opt/ibm/java/bin:$PATH
Find difference