This commit is contained in:
2019-06-07 23:04:57 +08:00
commit 36b92f19e0
67 changed files with 18266 additions and 0 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM node:12.4.0-alpine
LABEL AUTHOR="yi-ge"
LABEL maintainer="a@wyr.me"
RUN apk add --no-cache \
libstdc++ \
libgcc \
rsync \
openssh-client \
bash \
ca-certificates \
git
RUN mkdir /project
ADD . /project
WORKDIR /project
EXPOSE 80
CMD ["npm", "start"]