diff --git a/Dockerfile b/Dockerfile index 1c328d8..81c075e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY package.json yarn.lock ./ # KU-key fe에 필요한 패키지 설치 -RUN yarn install --production +RUN yarn install # serve 설치 RUN yarn global add serve # 현재 디렉토리의 모든 파일을 도커 컨테이너의 작업 디렉토리에 복사 diff --git a/package.json b/package.json index 97f79cb..840061f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "dev": "vite", "dev:testserver": "vite --mode testserver", "production": "vite --mode production", - "build": "tsc && vite build", + "build": "vite build", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" },