Sha256: 9a1f8615b3961f985490017c389520750262418535d84b9331d4457b2f84a4fa
Contents?: true
Size: 529 Bytes
Versions: 15
Compression:
Stored size: 529 Bytes
Contents
FROM nicholasjackson/microservice-basebox EXPOSE 8001 # Create directory for server files RUN mkdir /<%= application_name %> # Add s6 config ADD s6-etc /etc/s6 RUN chmod -R 755 /etc/s6; \ chmod -R 755 /etc/s6 # Add consul template ADD config.ctmpl /<%= application_name %>/config.ctmpl # Add server files ADD swagger_spec /swagger ADD <%= application_name %> /<%= application_name %>/<%= application_name %> RUN chmod 755 /<%= application_name %>/<%= application_name %> ENTRYPOINT ["/usr/bin/s6-svscan","/etc/s6"] CMD []
Version data entries
15 entries across 15 versions & 1 rubygems