This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/Dockerfile
2021-05-23 04:26:36 +03:00

6 lines
119 B
Docker

FROM node:lts-alpine
WORKDIR /usr/src/fosscord-api
COPY . .
RUN npm install
RUN npx patch-package
CMD ["npm", "start"]