Skip to content

Commit

Permalink
added a dockerfile for the frontend modified second
Browse files Browse the repository at this point in the history
  • Loading branch information
Motouom committed Jul 15, 2024
1 parent 622264f commit 346e29d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions PackIt-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ FROM node:18-alpine AS builder
WORKDIR /app

# Copy the application code
COPY package.json .
COPY package-lock.json .
COPY public public
COPY src src
COPY tsconfig.json .
COPY vite.config.ts .
COPY ./package.json .
COPY ./package-lock.json .
COPY ./public public
COPY ./src src
COPY ./tsconfig.json .
COPY ./vite.config.ts .

# Install dependencies
RUN npm ci
Expand Down

0 comments on commit 346e29d

Please sign in to comment.