Spaces:
Paused
Paused
| FROM ubuntu:20.04 | |
| RUN apt-get update && \ | |
| apt-get install -y curl git && \ | |
| curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ | |
| apt-get install -y nodejs && \ | |
| rm -rf /var/lib/apt/lists/* | |
| WORKDIR /usr/src/app | |
| COPY package*.json ./ | |
| RUN npm install | |
| COPY . . | |
| CMD ["node", "index.js"] |