chore: redo some debug oauth waiting strings, dockerfile

This commit is contained in:
Katie Thornhill 2019-11-20 00:28:35 -05:00
parent 86c31126e8
commit f6b54eb196
No known key found for this signature in database
GPG key ID: F76EDC6541A99644
5 changed files with 11 additions and 11 deletions

View file

@ -1,15 +1,15 @@
FROM node:10 AS builder
FROM node:12-alpine AS builder
# ENV NODE_ENV production
COPY ./UI /src/UI
RUN cd /src/UI && yarn && yarn build
RUN cd /src/UI && npm ci && npm run build
COPY ./Server /src/Server
RUN cd /src/Server && yarn
RUN cd /src/Server && npm ci
RUN cp -r /src/UI/build /src/Server/public
FROM mhart/alpine-node:10
FROM node:12-alpine
ENV NODE_ENV production
WORKDIR /dist
EXPOSE 6769