Sha256: 6fcc8231fb36ffd8561e3ee34c62a0cd1ec52960cc3d0a5e3c3287cbe49eafc3

Contents?: true

Size: 450 Bytes

Versions: 12

Compression:

Stored size: 450 Bytes

Contents

FROM nginx

RUN apt-get update -qq && apt-get -y install apache2-utils

ENV RAILS_ROOT /usr/src/app

WORKDIR $RAILS_ROOT

RUN mkdir log

# Copy Nginx config template
COPY docker/containers/web/app.conf /tmp/sooperdooper.nginx

# substitute variable references in the Nginx config template for real values from the environment

# put the final config in its place

RUN envsubst '$RAILS_ROOT' < /tmp/sooperdooper.nginx > /etc/nginx/conf.d/default.conf

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
roro-0.3.2 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.3.1 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.3.0 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.2.5 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.2.4 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.2.2 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.2.1 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.1.8 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.1.6 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.1.5 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.1.3 test_apps/dummy_roro/docker/containers/web/Dockerfile
roro-0.1.1 test_apps/dummy_roro/docker/containers/web/Dockerfile