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 11:55:54 +00:00

15 lines
212 B
Docker

FROM node:lts-alpine AS builder
WORKDIR /usr/src/util
COPY util .
RUN npm install && npm run build
WORKDIR /usr/src/cdn
COPY cdn/ .
RUN npm install && npm run build
EXPOSE 3001
CMD ["node", "dist/start.js"]