feat: initial commit

This commit is contained in:
2019-12-17 20:32:14 +01:00
commit a538ee369f
14 changed files with 1209 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:12
ENV AUDIENCE "https://angus.unbound.se"
ENV ORIGIN_HOST "auth0-mock"
ENV ORIGIN "https://auth0-mock:3333"
EXPOSE 3333
WORKDIR /app
ADD package.json yarn.lock /app/
RUN yarn install --frozen-lockfile
ADD app.js cert.js /app/
ADD public /app/public
RUN mkdir -p /root/.config
ENTRYPOINT yarn start