Sha256: 8e28c1408a4d5b6459c1a19be05d2a5dafc1eaa3537df1c4691a575126ed6b6e

Contents?: true

Size: 274 Bytes

Versions: 2

Compression:

Stored size: 274 Bytes

Contents

FROM ruby:3.0.4-alpine3.15 as base
RUN apk add terraform
ADD Gemfile* ./
RUN gem install bundler
RUN bundle install

FROM base as app
WORKDIR /schemas
ADD schemas ./schemas
ADD tf ./tf

FROM app as dev
ENV POLYN_ENV='development'

FROM app as prod
ENV POLYN_ENV='production'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
polyn-cli-0.3.0 lib/polyn/templates/Dockerfile
polyn-cli-0.2.0 lib/polyn/templates/Dockerfile