hopsoft/turbo_ready

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM ruby:3.0.3-slim-bullseye

RUN apt-get -y update && \
apt-get -y --no-install-recommends install \
build-essential \
curl \
git \
htop \
libjemalloc2 \
pkg-config \
sqlite3 \
tzdata

RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
RUN apt-get -y --no-install-recommends install nodejs

RUN apt-get clean
RUN gem update --system && gem install bundler

RUN mkdir -p /mnt/external/node_modules /mnt/external/bundle

COPY . /app
WORKDIR /app
CMD bin/docker/run/remote