Sha256: 5742a57375094a046e9febf77cbb8205f751a1b925e2a15351a0092a808fea68

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

FROM ruby:<%= upstream.tool_version %>-alpine

RUN apk update \
&& apk --no-cache --update add \
  build-base nodejs tzdata \
  mysql-dev mysql-client --no-install-recommends \
  postgresql-dev postgresql-client \
  libxslt-dev libxml2-dev

WORKDIR /opt/app
COPY . .

ENV RACK_ENV=production
RUN bundle install --without development test
CMD ["rackup", "config.ru", "-o", "0.0.0.0"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vps-0.1.1 templates/docker/upstream/Dockerfile.rack.erb