Moved to JS, using JSDOM and added Docker

This commit is contained in:
Pablo Ferreiro
2022-04-17 22:30:27 +02:00
parent 912e09882f
commit 6980abbef9
20 changed files with 1274 additions and 198 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:17
WORKDIR /usr/src/app
COPY package.json ./
RUN yarn install
COPY . .
EXPOSE 8080
CMD [ "node", "server.js" ]