File: Dockerfile

package info (click to toggle)
ruby-flipper 0.26.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,288 kB
  • sloc: ruby: 16,377; sh: 61; javascript: 24; makefile: 14
file content (27 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM ruby:3.0

RUN apt-get update && apt-get install -y \
  # build-essential \

  # for postgres
  # libpq-dev \
  # postgresql-client-9.4 \

  # for nokogiri
  # libxml2-dev \
  # libxslt1-dev \

  # for a JS runtime
  # imagemagick \
  # ghostscript \

  # debug tools
  vim

ENV APP_HOME /srv/app

ENV BUNDLE_GEMFILE=$APP_HOME/Gemfile \
    BUNDLE_JOBS=8 \
    BUNDLE_PATH=/bundle_cache

WORKDIR $APP_HOME