Skip to content

Commit

Permalink
Install dependency: libyaml.
Browse files Browse the repository at this point in the history
  • Loading branch information
afinetooth committed Aug 14, 2024
1 parent 34f3e13 commit 827491d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ FROM 84codes/crystal:latest AS builder-x86_64
# Set the working directory
WORKDIR /app

# Install required packages
RUN apk add --no-cache libyaml-dev

# Copy the source code
COPY . .

Expand All @@ -16,6 +19,9 @@ FROM 84codes/crystal:latest AS builder-aarch64
# Set the working directory
WORKDIR /app

# Install required packages
RUN apk add --no-cache libyaml-dev

# Copy the source code
COPY . .

Expand Down

0 comments on commit 827491d

Please sign in to comment.