Sha256: 9d03c525256960c6d2c936641d068914f63037d2e1810139a5a42c8eab16a8c8

Contents?: true

Size: 458 Bytes

Versions: 11

Compression:

Stored size: 458 Bytes

Contents

FROM ruby:alpine

# Use most recent versions of available packages
RUN sed -i -e 's/v[[:digit:]]\.[[:digit:]]/edge/g' /etc/apk/repositories

RUN apk update && apk add git yarn build-base

# create directory
WORKDIR /usr/src/cotton_tail

# copy Gemfile and lock
COPY Gemfile* ./
COPY cotton-tail.gemspec ./
COPY ./lib/cotton_tail/version.rb ./lib/cotton_tail/

RUN bundle install

# copy the contents to working directory
COPY . /usr/src/cotton_tail

CMD ash

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cotton-tail-0.7.0 Dockerfile
cotton-tail-0.6.1 Dockerfile
cotton-tail-0.6.0 Dockerfile
cotton-tail-0.5.0 Dockerfile
cotton-tail-0.4.1 Dockerfile
cotton-tail-0.4.0 Dockerfile
cotton-tail-0.3.0 Dockerfile
cotton-tail-0.2.1 Dockerfile
cotton-tail-0.2.0 Dockerfile
cotton-tail-0.1.2 Dockerfile
cotton-tail-0.1.1 Dockerfile