🃏 Added a vertical settings menu scaffold

This commit is contained in:
2021-09-06 23:01:44 -07:00
parent 3c58795286
commit f3d94f2a75
3 changed files with 48 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
FROM node:12-alpine
FROM node:12.21.0
LABEL maintainer="Rishi Ghan <rishi.ghan@gmail.com>"
RUN mkdir -p /usr/src/threetwo
@@ -9,10 +9,7 @@ COPY yarn.lock /usr/src/threetwo
COPY nodemon.json /usr/src/threetwo
COPY jsdoc.json /usr/src/threetwo
RUN apk add --no-cache --virtual .build-deps git automake autoconf \
&& yarn \
&& apk del .build-deps
RUN yarn
COPY . /usr/src/threetwo
EXPOSE 3050