pihelper/Dockerfile

6 lines
82 B
Text
Raw Permalink Normal View History

2022-02-05 01:08:07 +00:00
FROM node:lts
COPY . /app
WORKDIR /app
RUN ls
RUN npm install
ENTRYPOINT npm start