personal-security-checklist/Dockerfile

6 lines
128 B
Docker
Raw Normal View History

2024-09-14 13:22:26 -04:00
FROM jitesoft/node-yarn
2024-09-14 13:13:06 -04:00
COPY . /app
WORKDIR /app/web
2024-09-14 13:27:52 -04:00
RUN npm install -g npm@10.8.3 \
&& npm install
2024-09-14 13:13:06 -04:00
CMD ["yarn","dev"]