From 6b92f94079f8e0e06ce517883593c81920f3ed99 Mon Sep 17 00:00:00 2001 From: Griefed <44273438+Griefed@users.noreply.github.com> Date: Wed, 14 Oct 2020 21:45:34 +0200 Subject: [PATCH] Obsolete --- RPi-Dockerfile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 RPi-Dockerfile diff --git a/RPi-Dockerfile b/RPi-Dockerfile deleted file mode 100644 index 1e7e475..0000000 --- a/RPi-Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -FROM node:8-alpine - -LABEL maintainer="Griefed <griefed@griefed.de>" -LABEL description="Based on https://github.com/d-zone-org/d-zone/tree/v1/docker \ -but pulls files from GitHub instead of copying from local filesystem. \ -You must set your bot token as an environment variable and your bot must be \ -a member of at least one server for this to work." - - -RUN apk update && apk upgrade && apk add git && apk add nano && \ - git clone -b v1/docker https://github.com/d-zone-org/d-zone.git /opt/d-zone && \ - cd /opt/d-zone && \ - npm install && \ - npm run-script build && \ - apk del git - -WORKDIR /opt/d-zone - -CMD ["npm","start"] -- GitLab