Sha256: 834c5092334b5f32d3c01da489476b26ddb29eb9a967522a449c1869c07e708a
Contents?: true
Size: 478 Bytes
Versions: 3
Compression:
Stored size: 478 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 public public/ # Copy Nginx config template COPY .circleci/containers/web/app.conf /tmp/docker_example.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/docker_example.nginx > /etc/nginx/conf.d/default.conf
Version data entries
3 entries across 3 versions & 1 rubygems