Skip to content

Commit

Permalink
Merge pull request #66 from sayyyho/dev
Browse files Browse the repository at this point in the history
Fix: 도커 종속성 미설치 문제 해결
  • Loading branch information
sayyyho authored Aug 29, 2024
2 parents 4cf424c + 00b496a commit 80be116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ WORKDIR /app

# Install dependencies
COPY package.json package-lock.json ./
RUN npm install --production
RUN npm install

# Copy all files
COPY . .

# Build the application
RUN npm run build
RUN npx vite build # 'npx vite build'로 빌드 실행

# Production image for Nginx
FROM nginx:alpine
Expand Down

0 comments on commit 80be116

Please sign in to comment.