From 59930badc25ce1d5cd795e0c640c825c540e9ea7 Mon Sep 17 00:00:00 2001 From: Samus CTO Date: Tue, 17 Mar 2015 18:01:30 +0100 Subject: [PATCH] [IMP] rename run.sh to entrypoint.sh for clarity sake --- 8.0/Dockerfile | 6 +++--- 8.0/{run.sh => entrypoint.sh} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename 8.0/{run.sh => entrypoint.sh} (100%) diff --git a/8.0/Dockerfile b/8.0/Dockerfile index a52a268..6636c0f 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -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 \ && rm -rf /var/lib/apt/lists/* odoo.deb -# Copy run script and Odoo configuration file -COPY ./run.sh / +# Copy entrypoint script and Odoo configuration file +COPY ./entrypoint.sh / COPY ./openerp-server.conf /etc/odoo/ 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 USER odoo -ENTRYPOINT ["/run.sh"] +ENTRYPOINT ["/entrypoint.sh"] diff --git a/8.0/run.sh b/8.0/entrypoint.sh similarity index 100% rename from 8.0/run.sh rename to 8.0/entrypoint.sh