Teledrive5.3 / Dockerfile
Mythus's picture
Upload 224 files
7262ac3
raw
history blame contribute delete
330 Bytes
FROM node:16.14.0 as build
ARG REACT_APP_TG_API_ID
ARG REACT_APP_TG_API_HASH
WORKDIR /apps
COPY yarn.lock .
COPY package.json .
COPY api/package.json api/package.json
COPY web/package.json web/package.json
COPY docker/.env .
RUN yarn cache clean
RUN yarn install --network-timeout 1000000
COPY . .
RUN yarn workspaces run build