tachybase_todo/packages/api/Dockerfile
2020-10-24 15:34:43 +08:00

16 lines
230 B
Docker

FROM node:stretch
WORKDIR /app
COPY . /app
EXPOSE 23000
# # Install app dependencies
# ENV NPM_CONFIG_LOGLEVEL warn
# RUN yarn install
# # Show current folder structure in logs
# RUN ls -al -R
# CMD [ "npm", "run", "serve" ]