Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ysdragon authored Aug 4, 2024
1 parent ed594f0 commit 62e4a19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ WORKDIR /home/bots/StreamBot
# Install important deps
RUN apk --no-cache add --virtual .builds-deps build-base python3 ffmpeg

# Install node dev types
RUN pnpm install --save-dev @types/node

# Install pnpm
RUN npm install pnpm -g

Expand All @@ -19,6 +16,9 @@ COPY package.json ./
# Install dependencies
RUN pnpm install

# Install node dev types
RUN pnpm install --save-dev @types/node

# Copy the rest of the application code
COPY . .

Expand Down

0 comments on commit 62e4a19

Please sign in to comment.