We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c986b commit 8bb585dCopy full SHA for 8bb585d
Dockerfile
@@ -1,14 +1,13 @@
1
-FROM docker.io/library/ruby:3.2.2-slim
+FROM docker.io/library/ruby:3.2.2-alpine
2
3
# Install system dependencies
4
-RUN apt-get update && apt-get install --yes --no-install-recommends \
5
- build-essential \
+RUN apk add --no-cache \
+ build-base \
6
git \
7
nodejs \
8
npm \
9
chromium \
10
- make \
11
- && rm -rf /var/lib/apt/lists/*
+ make
12
13
# Set chromium path for puppeteer (needed for mermaid diagrams)
14
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
0 commit comments