mirror of https://github.com/l3uddz/traktarr
commit
bdf032dc1c
@ -1,23 +1,42 @@
|
|||||||
# Git
|
# User-specific stuff:
|
||||||
.git
|
.idea
|
||||||
|
|
||||||
# Systemd files
|
## File-based project format:
|
||||||
systemd
|
*.iws
|
||||||
|
|
||||||
# Logs
|
# IntelliJ
|
||||||
*.log*
|
/out/
|
||||||
|
|
||||||
# Configs
|
|
||||||
*.json
|
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
**/__pycache__
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
# logs
|
||||||
|
*.log*
|
||||||
|
|
||||||
|
# databases
|
||||||
|
*.db
|
||||||
|
|
||||||
|
# configs
|
||||||
|
*.cfg
|
||||||
|
*.json
|
||||||
|
|
||||||
|
# generators
|
||||||
|
*.bat
|
||||||
|
|
||||||
# Pyenv
|
# Pyenv
|
||||||
**/.python-version
|
**/.python-version
|
||||||
|
|
||||||
# User-specific stuff:
|
# PyInstaller
|
||||||
.idea
|
build/
|
||||||
|
dist/
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Git
|
||||||
|
.git
|
||||||
|
|
||||||
|
# Systemd
|
||||||
|
systemd
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
FROM python:3.6-alpine3.7
|
FROM python:3.6-alpine3.7
|
||||||
|
|
||||||
|
# Arguments for build tracking
|
||||||
|
ARG BRANCH=
|
||||||
|
ARG COMMIT=
|
||||||
|
|
||||||
ENV \
|
ENV \
|
||||||
# App directory
|
|
||||||
APP_DIR=traktarr \
|
APP_DIR=traktarr \
|
||||||
# Branch to clone
|
BRANCH=${BRANCH} \
|
||||||
BRANCH=master \
|
COMMIT=${COMMIT} \
|
||||||
# Config file
|
|
||||||
TRAKTARR_CONFIG=/config/config.json \
|
TRAKTARR_CONFIG=/config/config.json \
|
||||||
# Log file
|
|
||||||
TRAKTARR_LOGFILE=/config/traktarr.log
|
TRAKTARR_LOGFILE=/config/traktarr.log
|
||||||
|
|
||||||
|
COPY . /${APP_DIR}
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
|
echo "** BRANCH: ${BRANCH} COMMIT: ${COMMIT} **" && \
|
||||||
echo "** Upgrade all packages **" && \
|
echo "** Upgrade all packages **" && \
|
||||||
apk --no-cache -U upgrade && \
|
apk --no-cache -U upgrade && \
|
||||||
echo "** Install OS dependencies **" && \
|
|
||||||
apk --no-cache -U add git && \
|
|
||||||
echo "** Get Traktarr **" && \
|
|
||||||
git clone --depth 1 --branch ${BRANCH} https://github.com/l3uddz/traktarr.git /${APP_DIR} && \
|
|
||||||
echo "** Install PIP dependencies **" && \
|
echo "** Install PIP dependencies **" && \
|
||||||
pip install --no-cache-dir --upgrade pip setuptools && \
|
pip install --no-cache-dir --upgrade pip setuptools && \
|
||||||
pip install --no-cache-dir --upgrade -r /${APP_DIR}/requirements.txt
|
pip install --no-cache-dir --upgrade -r /${APP_DIR}/requirements.txt
|
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Docker cloud bug ?, working directory is not set acording to the config
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
docker build --build-arg BRANCH=${SOURCE_BRANCH} --build-arg COMMIT=${SOURCE_COMMIT} -f ${DOCKERFILE_PATH} -t ${IMAGE_NAME} .
|
Loading…
Reference in new issue