summary refs log tree commit diff
path: root/cdn/Dockerfile
blob: 2503240bf67a9dc3ba362a5a39ad6adde52d108f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"]