Sha256: bb4bf08c63583edb92c6fe2cd6fb73b85715bb5dbc984511d4a0399e78407d1d
Contents?: true
Size: 467 Bytes
Versions: 3
Compression:
Stored size: 467 Bytes
Contents
FROM nicholasjackson/microservice-basebox EXPOSE 8001 # Create directory for server files RUN mkdir /<%= application_name %> # Add consul template ADD config.ctmpl /<%= application_name %>/config.ctmpl ADD entrypoint.sh /entrypoint.sh # Add server files ADD <%= application_name %> /<%= application_name %>/<%= application_name %> RUN chmod 755 /<%= application_name %>/<%= application_name %> RUN chmod 755 /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] CMD []
Version data entries
3 entries across 3 versions & 1 rubygems