mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Build docker image
This commit is contained in:
parent
c0a0ca4588
commit
ab57fd3b76
16
.github/workflows/docker.yaml
vendored
Normal file
16
.github/workflows/docker.yaml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Test that the docker file builds correctly
|
||||||
|
|
||||||
|
name: Docker
|
||||||
|
|
||||||
|
on: ["push", "pull_request"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
docker:
|
||||||
|
runs-on: ubtun-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build Docker Image
|
||||||
|
run: docker build . --file docker/Dockerfile --tag inventree-:$(date +%s)
|
||||||
|
|
46
docker/Dockerfile
Normal file
46
docker/Dockerfile
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
FROM python:alpine as production
|
||||||
|
|
||||||
|
# Configuration params
|
||||||
|
ARG INVENTREE_REPO="https://github.com/inventree/InvenTree.git"
|
||||||
|
ARG INVENTREE_VERSION="master"
|
||||||
|
ARG INVENTREE_HOME="/home/inventree"
|
||||||
|
|
||||||
|
ENV PYTHONUNBUFFERED 1
|
||||||
|
|
||||||
|
# InvenTree paths
|
||||||
|
ENV INVENTREE_SRC_DIR="$INVENTREE_HOME/src"
|
||||||
|
ENV INVENTREE_STATIC_ROOT="$INVENTREE_HOME/static"
|
||||||
|
ENV INVENTREE_MEDIA_ROOT="$INVENTREE_HOME/media"
|
||||||
|
ENV INVENTREE_LOG_DIR="$INVENTREE_HOME/log"
|
||||||
|
ENV INVENTREE_BACKUP_DIR="$INVENTREE_HOME/backup"
|
||||||
|
ENV INVENTREE_VENV="$INVENTREE_HOME/env"
|
||||||
|
|
||||||
|
RUN echo "Installing InvenTree '${INVENTREE_VERSION}' from ${INVENTREE_REPO}"
|
||||||
|
|
||||||
|
# Create user account
|
||||||
|
RUN useradd -ms /bin/bash inventree
|
||||||
|
USER inventree
|
||||||
|
WORKDIR /home/inventree
|
||||||
|
|
||||||
|
# Clone source code
|
||||||
|
RUN git clone --branch $INVENTREE_VERSION --depth 1 ${INVENTREE_REPO} ${INVENTREE_SRC_DIR}
|
||||||
|
|
||||||
|
# Install required system packages
|
||||||
|
RUN apk add --no-cache postgresql-contrib postgresql-dev libpq-dev
|
||||||
|
RUN apk add --no-cache libmysqlclient-dev
|
||||||
|
|
||||||
|
# Install required PIP packages
|
||||||
|
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 psycopg2 mysqlclient pgcli mariadb
|
||||||
|
|
||||||
|
# Install InvenTree packages
|
||||||
|
RUN python -m venv $INVENTREE_VENV && pip install --no-cache-dir -U -r $INVENTREE_SRC_DIR/requirements.txt
|
||||||
|
|
||||||
|
# Install supervisor
|
||||||
|
RUN apt add --no-cache supervisor
|
||||||
|
|
||||||
|
# Copy supervisor file
|
||||||
|
COPY deploy/inventree.conf /etc/supervisor/conf.d/inventree.conf
|
||||||
|
|
||||||
|
RUN sudo service supervisor start
|
Loading…
Reference in New Issue
Block a user