tweaks
This commit is contained in:
parent
209a31b53a
commit
69a8478f4a
5 changed files with 5 additions and 19 deletions
|
@ -6,8 +6,6 @@ ENV DEBUG="False"
|
||||||
|
|
||||||
COPY / /app
|
COPY / /app
|
||||||
|
|
||||||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
python3 -m pip install -r /app/requirements.txt && \
|
python3 -m pip install -r /app/requirements.txt && \
|
||||||
chown -R abc:abc \
|
chown -R abc:abc \
|
||||||
|
|
|
@ -8,11 +8,7 @@ COPY / /app
|
||||||
|
|
||||||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||||
|
|
||||||
RUN \
|
RUN python3 -m pip install -r /app/requirements.txt
|
||||||
python3 -m pip install -r /app/requirements.txt && \
|
|
||||||
chown -R abc:abc \
|
|
||||||
/config \
|
|
||||||
/app
|
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,9 @@ ENV DEBUG="False"
|
||||||
|
|
||||||
COPY / /app
|
COPY / /app
|
||||||
|
|
||||||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
COPY /tmp/qemu-arm-static /usr/bin/qemu-aarch64-static
|
||||||
|
|
||||||
RUN \
|
RUN python3 -m pip install -r /app/requirements.txt
|
||||||
python3 -m pip install -r /app/requirements.txt && \
|
|
||||||
chown -R abc:abc \
|
|
||||||
/config \
|
|
||||||
/app
|
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
@ -8,11 +8,7 @@ COPY / /app
|
||||||
|
|
||||||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||||
|
|
||||||
RUN \
|
RUN python3 -m pip install -r /app/requirements.txt
|
||||||
python3 -m pip install -r /app/requirements.txt && \
|
|
||||||
chown -R abc:abc \
|
|
||||||
/config \
|
|
||||||
/app
|
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
VERSION="$(grep -i version varken.__init__.py | cut -d' ' -f3 | tr -d \")"
|
VERSION="$(grep -i version varken/__init__.py | cut -d' ' -f3 | tr -d \")"
|
||||||
|
|
||||||
# Docker
|
# Docker
|
||||||
GITHUB_USER='dirtycajunrice'
|
GITHUB_USER='dirtycajunrice'
|
||||||
|
|
Loading…
Reference in a new issue