[IMP] rename run.sh to entrypoint.sh for clarity sake

This commit is contained in:
Samus CTO 2015-03-17 18:01:30 +01:00
parent 1740d8a606
commit 59930badc2
2 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@ RUN curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odo
&& apt-get -y install -f --no-install-recommends \ && apt-get -y install -f --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* odoo.deb && rm -rf /var/lib/apt/lists/* odoo.deb
# Copy run script and Odoo configuration file # Copy entrypoint script and Odoo configuration file
COPY ./run.sh / COPY ./entrypoint.sh /
COPY ./openerp-server.conf /etc/odoo/ COPY ./openerp-server.conf /etc/odoo/
RUN chown odoo /etc/odoo/openerp-server.conf RUN chown odoo /etc/odoo/openerp-server.conf
@ -44,4 +44,4 @@ ENV OPENERP_SERVER /etc/odoo/openerp-server.conf
# Set default user when running the container # Set default user when running the container
USER odoo USER odoo
ENTRYPOINT ["/run.sh"] ENTRYPOINT ["/entrypoint.sh"]