12 lines
145 B
Docker
12 lines
145 B
Docker
|
FROM node:19
|
||
|
|
||
|
WORKDIR /opt/code
|
||
|
|
||
|
COPY . /opt/code
|
||
|
|
||
|
RUN cat .gitignore | xargs rm -rf && \
|
||
|
npm i && \
|
||
|
./install
|
||
|
|
||
|
CMD [ "npm", "run", "dev" ]
|