Skip to content

Commit

Permalink
Merge pull request #79 from RevelioStartup/hotfix/deployment
Browse files Browse the repository at this point in the history
fix: typo on dockerfile
  • Loading branch information
emiriko authored May 17, 2024
2 parents fb364a1 + 1464a9c commit f787ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app

# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* zpackage-lock.json* pnpm-lock.yaml* ./
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
RUN \
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
Expand Down

0 comments on commit f787ff0

Please sign in to comment.