added wizard.cfg to .gitignore

This commit is contained in:
nachoparker 2018-06-19 06:39:22 +02:00
parent f62e36a2b5
commit 9637502da7
2 changed files with 1 additions and 32 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ armbian/
raspbian_root
raspbian_boot
docker-armhf/raspbian_docker.img
ncp-web/wizard.cfg

View File

@ -1,32 +0,0 @@
FROM ownyourbits/nextcloudpi-x86
MAINTAINER Ignacio Núñez Hernanz <nacho@ownyourbits.com>
SHELL ["/bin/bash", "-c"]
ENV DOCKERBUILD 1
COPY build-devel.sh /usr/local/etc/
RUN \
apt-get update; \
apt-get install --no-install-recommends -y wget ca-certificates git; \
# install nextcloudpi devel
source /usr/local/etc/library.sh; \
set +x; \
cd /usr/local/etc/; \
install_script build-devel.sh; \
# specific cleanup
rm /usr/local/etc/build-devel.sh; \
apt-get purge -y wget ca-certificates git; \
# package clean up
apt-get autoremove -y; \
apt-get clean; \
rm -f /var/lib/apt/lists/*; \
rm -rf /usr/share/man/*; \
rm -rf /usr/share/doc/*; \
rm -f /var/log/alternatives.log /var/log/apt/*; \
rm /var/cache/debconf/*-old;