mirror of
https://github.com/Lissy93/personal-security-checklist.git
synced 2024-12-26 07:49:25 -05:00
6 lines
130 B
Docker
6 lines
130 B
Docker
FROM node:hydrogen-alpine
|
|
COPY . /app
|
|
WORKDIR /app/web
|
|
RUN npm install -g npm@10.8.3 \
|
|
&& npm install
|
|
CMD ["yarn","dev"] |