add Readme.md

This commit is contained in:
2020-12-16 16:09:21 +01:00
parent 359c733977
commit 1df1ae23ae
4 changed files with 35 additions and 43 deletions

View File

@@ -1,21 +0,0 @@
FROM node:lts-alpine
RUN mkdir -p /home/node/app/node_modules
WORKDIR /home/node/app
COPY package.json yarn.* ./
RUN apk add --no-cache git
COPY . /home/node/app/
RUN chown -R node:node /home/node
RUN yarn
USER node
EXPOSE 3333
ENTRYPOINT ["node","ace","serve","--watch"]