1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Adjustments to dev testing

This commit is contained in:
krateng 2022-02-21 04:42:20 +01:00
parent d3258a7e63
commit 54a73243cc
2 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ RUN sed 's/#.*//' ./install/dependencies_run.txt | xargs apk add --no-cache
# Python dependencies
RUN pip3 install --no-cache-dir -r requirements.txt
# Local project install
COPY . .
COPY ./maloja ./maloja
COPY ./pyproject.toml ./pyproject.toml
COPY ./README.md ./README.md
COPY ./LICENSE ./LICENSE
RUN pip3 install /usr/src/app
# Remove build dependencies
RUN apk del .build-deps