This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
.gitea
servers
.dockerignore
.gitignore
Dockerfile
README.md
config.ini.dist
index.js
package.json
vxmppb/Dockerfile
2022-02-27 11:24:25 -05:00

7 lines
113 B
Docker

FROM node:16-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]