Files
fe-drone-ci/Dockerfile
13078417792 ad8f790e18
Some checks failed
continuous-integration/drone/push Build is failing
demo ci
2021-06-05 22:26:15 +08:00

16 lines
217 B
Docker

FROM node:lts
WORKDIR /src
COPY . .
RUN yarn global add http-server && \
npm install pm2 -g && \
yarn && \
yarn build:prod
EXPOSE 80
# CMD ["http-server","/src/dist","-p","80"]
CMD ["bash","http.sh"]