blob: a1dea96f475c133cb206808693192e906ba3f949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM debian:stable-slim as ruby-builder
ENV PATH="/opt/ruby/bin:${HOME}/.local/bin:${PATH}"
WORKDIR /root
COPY config /root
RUN bash /root/install.sh
FROM debian:stable-slim
ENV PATH="/opt/ruby/bin:${HOME}/.local/bin:${PATH}"
RUN apt-get update -y && apt-get install -y libgdbm6 wget libssl1.1 libyaml-0-2 libreadline7 libncurses6 libxml2
COPY --from=ruby-builder /opt/ruby /opt/ruby
RUN env
RUN spandx help
|