first commit

This commit is contained in:
2022-02-27 20:14:43 +01:00
parent bac5197e81
commit df01be1d85
2 changed files with 23 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:14
WORKDIR /code
COPY package.json /code/package.json
COPY package-lock.json /code/package-lock.json
RUN npm install
COPY . /code
CMD ["npm", "run", "dev"]