10 lines
298 B
Docker
10 lines
298 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM ruby:3.3.0
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends curl unzip \
|
|
ldap-utils tini libvips
|
|
RUN curl -fsSL https://bun.sh/install | bash -s -- bun-v1.3.14
|
|
ENV PATH="/root/.bun/bin:$PATH"
|