16 lines
230 B
Docker
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" ]
|