Install definitions

This commit is contained in:
TheMaddax 2024-11-23 18:09:26 -06:00
parent 4ff75768de
commit bb1215e459

View file

@ -6,6 +6,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci
RUN npm install -g typescript RUN npm install -g typescript
RUN npm install --save-dev @types/react-dom @types/vite @vitejs/plugin-react
COPY . . COPY . .
RUN npm run build RUN npm run build