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/cdn/Dockerfile
2021-10-17 02:12:10 +02:00

8 lines
155 B
Docker

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