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-29 22:36:41 +03:00

8 lines
155 B
Docker

FROM node:lts-alpine
WORKDIR /usr/src/fosscord-api
COPY package.json .
RUN npm install
COPY . .
EXPOSE 3001
RUN npm run build
CMD ["node", "dist/start.js"]