Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 0e5b410

Browse files
committed
build 3.3.8build2
1 parent cf23006 commit 0e5b410

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

dockerfiles/3.3.8build2/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from ruby:3.3.8
2+
3+
env \
4+
DEBIAN_FRONTEND=noninteractive \
5+
NODE_VERSION=18.14.2 \
6+
DOCKERIZE_VERSION=v0.7.0
7+
8+
run \
9+
wget -q -O- https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
10+
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
11+
apt update && \
12+
apt install -y deno build-essential libpq-dev postgresql-client google-chrome-stable unzip cmake rsync libvips42 && \
13+
apt clean && \
14+
wget -O - https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | tar xzf - -C /usr/local/bin && \
15+
curl -sSL "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" | tar xfJ - -C /usr/local --strip-components=1 && \
16+
npm install -g yarn

0 commit comments

Comments
 (0)