Fix critical error in dockerfile

- Don't' be putting no spaces in!
This commit is contained in:
Oliver 2021-08-17 20:29:48 +10:00
parent 7bf3229595
commit a474000361
2 changed files with 4 additions and 2 deletions

View File

@ -112,7 +112,7 @@ FROM base as dev
# The development image requires the source code to be mounted to /home/inventree/ # The development image requires the source code to be mounted to /home/inventree/
# So from here, we don't actually "do" anything, apart from some file management # So from here, we don't actually "do" anything, apart from some file management
ENV INVENTREE_DEV_DIR = "${INVENTREE_HOME}/dev" ENV INVENTREE_DEV_DIR="${INVENTREE_HOME}/dev"
# Override default path settings # Override default path settings
ENV INVENTREE_STATIC_ROOT="${INVENTREE_DEV_DIR}/static" ENV INVENTREE_STATIC_ROOT="${INVENTREE_DEV_DIR}/static"

View File

@ -1,5 +1,7 @@
# InvenTree environment variables for a development setup
# Set DEBUG to False for a production environment! # Set DEBUG to False for a production environment!
INVENTREE_DEBUG=true INVENTREE_DEBUG=True
# Database linking options # Database linking options
INVENTREE_DB_ENGINE=sqlite3 INVENTREE_DB_ENGINE=sqlite3