diff options
| author | name <[email protected]> | 2020-06-04 22:17:01 +0000 |
|---|---|---|
| committer | name <[email protected]> | 2020-06-04 22:17:01 +0000 |
| commit | 0ec899a75902e2a7e0ef3d99450bbde235d07ed6 (patch) | |
| tree | 53714b818198c196eec24686d53cdc479f976d0f | |
| parent | Ubuntu Docker install info (diff) | |
| download | docker-osx-0ec899a75902e2a7e0ef3d99450bbde235d07ed6.tar.xz docker-osx-0ec899a75902e2a7e0ef3d99450bbde235d07ed6.zip | |
Removed the check for hub.docker.com
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,7 +37,8 @@ MAINTAINER 'https://sick.codes' <https://sick.codes> ARG SIZE=32G ARG VERSION=10.14.6 -RUN [[ $(egrep -c '(svm|vmx)' /proc/cpuinfo) -gt 0 ]] || { echo KVM not possible on this host && exit 1; } +# This fails on hub.docker.com +# RUN [[ $(egrep -c '(svm|vmx)' /proc/cpuinfo) -gt 0 ]] || { echo KVM not possible on this host && exit 1; } WORKDIR /root RUN tee -a /etc/pacman.conf <<< '[community-testing]' |