mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
More required packages, I guess...
This commit is contained in:
parent
286cf9b102
commit
8b227ce297
@ -1,6 +1,7 @@
|
|||||||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
||||||
[![Coverage Status](https://coveralls.io/repos/github/inventree/InvenTree/badge.svg)](https://coveralls.io/github/inventree/InvenTree)
|
[![Coverage Status](https://coveralls.io/repos/github/inventree/InvenTree/badge.svg)](https://coveralls.io/github/inventree/InvenTree)
|
||||||
![PEP](https://github.com/inventree/inventree/actions/workflows/style.yaml/badge.svg)
|
![PEP](https://github.com/inventree/inventree/actions/workflows/style.yaml/badge.svg)
|
||||||
|
![Docker Build](https://github.com/inventree/inventree/actions/workflows/docker.yaml/badge.svg)
|
||||||
![SQLite](https://github.com/inventree/inventree/actions/workflows/coverage.yaml/badge.svg)
|
![SQLite](https://github.com/inventree/inventree/actions/workflows/coverage.yaml/badge.svg)
|
||||||
![MySQL](https://github.com/inventree/inventree/actions/workflows/mysql.yaml/badge.svg)
|
![MySQL](https://github.com/inventree/inventree/actions/workflows/mysql.yaml/badge.svg)
|
||||||
![MariaDB](https://github.com/inventree/inventree/actions/workflows/mariadb.yaml/badge.svg)
|
![MariaDB](https://github.com/inventree/inventree/actions/workflows/mariadb.yaml/badge.svg)
|
||||||
|
@ -21,17 +21,21 @@ RUN echo "Installing InvenTree '${INVENTREE_VERSION}' from ${INVENTREE_REPO}"
|
|||||||
RUN addgroup -S inventreegroup && adduser -S inventree -G inventreegroup
|
RUN addgroup -S inventreegroup && adduser -S inventree -G inventreegroup
|
||||||
WORKDIR /home/inventree
|
WORKDIR /home/inventree
|
||||||
|
|
||||||
# Install git
|
# Install required system packages
|
||||||
RUN apk add --no-cache git
|
RUN apk add --no-cache git make bash \
|
||||||
|
gcc libgcc g++ libstdc++ \
|
||||||
|
libjpeg-turbo libjpeg-turbo-dev jpeg jpeg-dev \
|
||||||
|
libffi libffi-dev \
|
||||||
|
zlib zlib-dev \
|
||||||
|
RUN apk add --no-cache cairo cairo-dev pango pango-dev
|
||||||
|
RUN apk add --no-cache fontconfig ttf-droid ttf-liberation ttf-dejavu ttf-opensans ttf-ubuntu-font-family font-croscore font-noto
|
||||||
|
RUN apk add --no-cache python3
|
||||||
|
RUN apk add --no-cache postgresql-contrib postgresql-dev libpq
|
||||||
|
RUN apk add --no-cache mariadb-connector-c mariadb-dev
|
||||||
|
|
||||||
# Clone source code
|
# Clone source code
|
||||||
RUN git clone --branch $INVENTREE_VERSION --depth 1 ${INVENTREE_REPO} ${INVENTREE_SRC_DIR}
|
RUN git clone --branch $INVENTREE_VERSION --depth 1 ${INVENTREE_REPO} ${INVENTREE_SRC_DIR}
|
||||||
|
|
||||||
# Install required system packages
|
|
||||||
RUN apk add --no-cache gcc g++
|
|
||||||
RUN apk add --no-cache postgresql-contrib postgresql-dev libpq
|
|
||||||
RUN apk add --no-cache mariadb-connector-c mariadb-dev
|
|
||||||
|
|
||||||
# Install required PIP packages
|
# Install required PIP packages
|
||||||
RUN python -m venv $INVENTREE_VENV && pip install --upgrade pip setuptools wheel
|
RUN python -m venv $INVENTREE_VENV && pip install --upgrade pip setuptools wheel
|
||||||
RUN python -m venv $INVENTREE_VENV && pip install --no-cache-dir -U invoke
|
RUN python -m venv $INVENTREE_VENV && pip install --no-cache-dir -U invoke
|
||||||
|
Loading…
Reference in New Issue
Block a user