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

Reworked everything again

This commit is contained in:
krateng
2021-12-23 08:48:39 +01:00
parent 9f4041de78
commit e53588b402
11 changed files with 23 additions and 16 deletions

View File

@ -11,10 +11,10 @@ WORKDIR /usr/src/app
COPY ./install ./install
RUN \
# Build dependencies
sh ./install/alpine_requirements_build_volatile.sh && \
# Runtime dependencies
sh ./install/alpine_requirements_run.sh && \
# Build dependencies (This will pipe all packages from the file)
sed 's/#.*//' ./install/dependencies_build.txt | xargs apk add --no-cache --virtual .build-deps && \
# Runtime dependencies (Same)
sed 's/#.*//' ./install/dependencies_run.txt | xargs apk add && \
# PyPI install