Skip to content

Commit

Permalink
Fix: Add missing yaml dependency to dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Jan 23, 2025
1 parent d8b8995 commit 90584a5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
FROM docker.io/ruby:3.3-slim-bookworm

RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential libc-dev sqlite3 nodejs npm && \
apt-get install -y --no-install-recommends \
build-essential \
libc-dev \
sqlite3 \
nodejs \
npm \
libyaml-dev && \
adduser --disabled-password --uid 1001 --home /app app && \
mkdir -p /app && \
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 90584a5

Please sign in to comment.