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:28:19 +03:00

7 lines
131 B
Docker

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