Delete base image
This commit is contained in:
parent
bc2d6d8bdc
commit
96616ce5b0
|
@ -1,20 +0,0 @@
|
|||
FROM debian:jessie
|
||||
MAINTAINER Kelvin Chen <kelvin@kelvinchen.org>
|
||||
|
||||
# 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/*
|
|
@ -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 &
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue