Skip to content

Commit

Permalink
Update Koalix CRM to version 1.14.0-rc2
Browse files Browse the repository at this point in the history
The koalix-crm package has been updated to version 1.14.0-rc2 in the requirements.txt file. A new version.py file has also been added, reporting the Docker-specific version of the application. The displayed version on the dashboard now includes both the base application version and the Docker version.
  • Loading branch information
scaphilo committed Apr 7, 2024
1 parent 5c01c55 commit 1300ad1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ RUN chown -R www-data:www-data /usr/src/app/media /usr/src/app/static
COPY settings /usr/src/app/settings
COPY dashboard.py /usr/src/app
COPY manage.py /usr/src/app
COPY version.py /usr/src/app
COPY urls.py /usr/src/app
COPY wsgi.py /usr/src/app
COPY __init__.py /usr/src/app
Expand All @@ -47,4 +48,4 @@ ENV DJANGO_SETTINGS_MODULE=settings.production_docker_postgres_settings
EXPOSE 80

# Command to run the Django development server
CMD python manage.py migrate && python manage.py collectstatic --no-input && gunicorn --bind :8000 wsgi
CMD python manage.py migrate && python manage.py collectstatic --no-input && chown -R www-data: /usr/src/app/media && gunicorn --bind :8000 wsgi

0 comments on commit 1300ad1

Please sign in to comment.