add twitch oauth login

This commit is contained in:
Jay
2018-08-12 23:31:09 +08:00
parent 89b24e0bf6
commit 334fce3b9b
11 changed files with 140 additions and 77 deletions
+3 -3
View File
@@ -5,9 +5,9 @@ RUN mkdir -p /data
WORKDIR /data
COPY . .
RUN rm -f .env
RUN apt-get update -qqy
RUN apt-get install -qqy imagemagick graphicsmagick
RUN apt-get clean
RUN apt-get update -qqy \
&& apt-get install -qqy imagemagick graphicsmagick \
&& apt-get clean
RUN npm install
EXPOSE ${NODE_PORT}
CMD ["npm", "run", "dbrun"]