17 lines
770 B
Docker
17 lines
770 B
Docker
# safeclaude builds this on top of its shared base. Everything here happens once
|
|
# and is cached, so it won't slow down your day-to-day launches.
|
|
FROM safeclaude-base:latest
|
|
|
|
# Add the system packages and language versions your project needs below.
|
|
# (You're root during the build, so apt just works.)
|
|
#
|
|
# Example — Ruby + Postgres client + headless Chrome (see the repo's example/):
|
|
#
|
|
# RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
# build-essential libssl-dev libreadline-dev zlib1g-dev \
|
|
# libffi-dev libyaml-dev libpq-dev socat chromium chromium-driver
|
|
#
|
|
# Tip: pin specific language versions here (install one Ruby, one Node, etc.)
|
|
# rather than a version manager — a project only needs one. See the repo's
|
|
# example/ for how.
|