[#272] Support for external stop/restart control on the application #273

Merged
blacklight merged 18 commits from 272/external-proc-controller into master 2023-08-15 21:34:44 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit fef6513cc8 - Show all commits

View File

@ -66,11 +66,11 @@ steps:
image: python:3.11-alpine
commands:
- apk add --update --no-cache redis
- apk add --update --no-cache --virtual build-base g++ rust
- apk add --update --no-cache --virtual build-base g++ rust linux-headers
- pip install -U pip
- pip install .
- pip install -r requirements-tests.txt
- apk del build-base g++ rust
- apk del build-base g++ rust linux-headers
- pytest tests
- name: build-ui

View File

@ -7,10 +7,10 @@ FROM python:3.11-alpine
RUN mkdir -p /install /app
COPY . /install
RUN apk add --update --no-cache redis
RUN apk add --update --no-cache --virtual build-base g++ rust
RUN apk add --update --no-cache --virtual build-base g++ rust linux-headers
RUN pip install -U pip
RUN cd /install && pip install .
RUN apk del build-base g++ rust
RUN apk del build-base g++ rust linux-headers
EXPOSE 8008
VOLUME /app/config