mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 19:46:46 +00:00
typo fix
This commit is contained in:
parent
d756579a06
commit
db477bceab
@ -51,8 +51,6 @@ LABEL org.label-schema.schema-version="1.0" \
|
|||||||
# Create user account
|
# Create user account
|
||||||
RUN addgroup -S inventreegroup && adduser -S inventree -G inventreegroup
|
RUN addgroup -S inventreegroup && adduser -S inventree -G inventreegroup
|
||||||
|
|
||||||
WORKDIR ${INVENTREE_HOME}
|
|
||||||
|
|
||||||
# Install required system packages
|
# Install required system packages
|
||||||
RUN apk add --no-cache git make bash \
|
RUN apk add --no-cache git make bash \
|
||||||
gcc libgcc g++ libstdc++ \
|
gcc libgcc g++ libstdc++ \
|
||||||
@ -75,6 +73,8 @@ RUN apk add --no-cache git make bash \
|
|||||||
# Install required base-level python packages
|
# Install required base-level python packages
|
||||||
COPY requirements.txt requirements.txt
|
COPY requirements.txt requirements.txt
|
||||||
RUN pip install --no-cache-dir -U -r requirements.txt
|
RUN pip install --no-cache-dir -U -r requirements.txt
|
||||||
|
|
||||||
|
# Production code (pulled from tagged github release)
|
||||||
FROM base as production
|
FROM base as production
|
||||||
|
|
||||||
# Clone source code
|
# Clone source code
|
||||||
|
@ -13,4 +13,4 @@ INVENTREE_DB_NAME=inventree
|
|||||||
INVENTREE_DB_HOST=inventree-db
|
INVENTREE_DB_HOST=inventree-db
|
||||||
INVENTREE_DB_PORT=5432
|
INVENTREE_DB_PORT=5432
|
||||||
INVENTREE_DB_USER=pguser
|
INVENTREE_DB_USER=pguser
|
||||||
INVENTREE_DB_PASSWEORD=pgpassword
|
INVENTREE_DB_PASSWORD=pgpassword
|
||||||
|
Loading…
x
Reference in New Issue
Block a user