Dockerfile.release: COPY from current directory.

This commit is contained in:
Pedro Salgado 2016-12-30 16:52:17 -07:00
parent 0aad16b8da
commit 41932d69e7
3 changed files with 6 additions and 6 deletions

View File

@ -17,8 +17,8 @@ RUN set -x; \
&& rm -rf /var/lib/apt/lists/* odoo.deb && rm -rf /var/lib/apt/lists/* odoo.deb
# Copy entrypoint script and Odoo configuration file # Copy entrypoint script and Odoo configuration file
COPY "${ODOO_VERSION}/entrypoint.sh" / COPY "./entrypoint.sh" /
COPY "${ODOO_VERSION}/odoo.conf" /etc/odoo/ COPY "./odoo.conf" /etc/odoo/
RUN chown odoo /etc/odoo/odoo.conf RUN chown odoo /etc/odoo/odoo.conf
# Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons # Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons

View File

@ -17,8 +17,8 @@ RUN set -x; \
&& rm -rf /var/lib/apt/lists/* odoo.deb && rm -rf /var/lib/apt/lists/* odoo.deb
# Copy entrypoint script and Odoo configuration file # Copy entrypoint script and Odoo configuration file
COPY "${ODOO_VERSION}/entrypoint.sh" / COPY "./entrypoint.sh" /
COPY "${ODOO_VERSION}/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
# Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons # Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons

View File

@ -17,8 +17,8 @@ RUN set -x; \
&& rm -rf /var/lib/apt/lists/* odoo.deb && rm -rf /var/lib/apt/lists/* odoo.deb
# Copy entrypoint script and Odoo configuration file # Copy entrypoint script and Odoo configuration file
COPY "${ODOO_VERSION}/entrypoint.sh" / COPY "./entrypoint.sh" /
COPY "${ODOO_VERSION}/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
# Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons # Mount /var/lib/odoo to allow restoring filestore and /mnt/extra-addons for users addons