Skip to content

Commit

Permalink
ci: updated api dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis3797 committed May 15, 2024
1 parent f62a4fe commit 59ce07e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /app
COPY ./apps/api/package.json ./

RUN cat ./package.json
RUN pwd && ls
RUN pwd && ls -la

# Install development dependencies
RUN apk add --no-cache --virtual .build-deps \
Expand Down Expand Up @@ -39,7 +39,7 @@ WORKDIR /app
COPY ./apps/api/package.json ./

RUN cat ./package.json
RUN pwd && ls
RUN pwd && ls -la

# Install dumb-init
RUN apk add --no-cache dumb-init
Expand Down Expand Up @@ -68,7 +68,7 @@ ENV HOST=0.0.0.0
# Generate prisma client
RUN yarn prisma generate

RUN pwd && ls
RUN pwd && ls -la

# Expose port for the application to listen on
EXPOSE 4040
Expand Down

0 comments on commit 59ce07e

Please sign in to comment.