Skip to content

Commit

Permalink
ci: changed copy paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis3797 committed May 28, 2024
1 parent 7826de8 commit 61181f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM node:20-alpine AS build
WORKDIR /app

# Copy package.json and to the container
COPY ./package.json ./
COPY ./apps/api/package.json ./

RUN apk add --update && apk add \
gcc \
Expand All @@ -17,7 +17,7 @@ RUN apk add --update && apk add \
dumb-init


COPY . .
COPY ./apps/api/ .

RUN yarn install --frozen-lockfile && yarn cache clean && npm install -g typescript

Expand Down
4 changes: 2 additions & 2 deletions apps/media-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM node:20-alpine AS build
WORKDIR /app

# Copy package.json and to the container
COPY ./package.json ./
COPY ./apps/media-server/package.json ./

RUN apk add --update && apk add \
gcc \
Expand All @@ -17,7 +17,7 @@ RUN apk add --update && apk add \
dumb-init


COPY . .
COPY ./apps/media-server/ .

RUN yarn install --frozen-lockfile && yarn cache clean && npm install -g typescript

Expand Down

0 comments on commit 61181f1

Please sign in to comment.