diff --git a/Dockerfiles/base/Dockerfile b/Dockerfiles/base/Dockerfile deleted file mode 100644 index eeaa00d..0000000 --- a/Dockerfiles/base/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM debian:jessie -MAINTAINER Kelvin Chen - -# Install all dependencies that are used in multiple images. -RUN echo "deb http://httpredir.debian.org/debian jessie non-free" \ - >> /etc/apt/sources.list \ - && apt-get update \ - && apt-get install --no-install-recommends -y \ - vim \ - ca-certificates \ - python \ - python-dev \ - curl \ - git \ - nginx \ - unzip \ - unrar \ - supervisor \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/build-all.sh b/build-all.sh index 053200a..99bcc5b 100755 --- a/build-all.sh +++ b/build-all.sh @@ -22,8 +22,6 @@ while getopts ":nq" opt; do esac done -docker build -t kelvinchen/seedbox:base --pull Dockerfiles/base - docker build -t kelvinchen/seedbox:frontend $ARGS Dockerfiles/frontend & docker build -t kelvinchen/seedbox:plex $ARGS Dockerfiles/plex & docker build -t kelvinchen/seedbox:rtorrent $ARGS Dockerfiles/rtorrent & diff --git a/push-images.sh b/push-images.sh index 300e642..bc8a796 100755 --- a/push-images.sh +++ b/push-images.sh @@ -2,7 +2,6 @@ # Push all images to the docker registry. -docker push kelvinchen/seedbox:base docker push kelvinchen/seedbox:frontend docker push kelvinchen/seedbox:plex docker push kelvinchen/seedbox:rtorrent