diff --git a/Dockerfile b/Dockerfile index 3681dd4..5b0194b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,6 @@ ENV DEBUG="False" COPY / /app -COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static - RUN \ python3 -m pip install -r /app/requirements.txt && \ chown -R abc:abc \ diff --git a/Dockerfile.arm b/Dockerfile.arm index fed9013..5d5624e 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -8,11 +8,7 @@ COPY / /app COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static -RUN \ - python3 -m pip install -r /app/requirements.txt && \ - chown -R abc:abc \ - /config \ - /app +RUN python3 -m pip install -r /app/requirements.txt WORKDIR /app diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index 92fd7ab..28f1c42 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -6,13 +6,9 @@ ENV DEBUG="False" COPY / /app -COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static +COPY /tmp/qemu-arm-static /usr/bin/qemu-aarch64-static -RUN \ - python3 -m pip install -r /app/requirements.txt && \ - chown -R abc:abc \ - /config \ - /app +RUN python3 -m pip install -r /app/requirements.txt WORKDIR /app diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 977979e..4ed529a 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -8,11 +8,7 @@ COPY / /app COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static -RUN \ - python3 -m pip install -r /app/requirements.txt && \ - chown -R abc:abc \ - /config \ - /app +RUN python3 -m pip install -r /app/requirements.txt WORKDIR /app diff --git a/deploy.sh b/deploy.sh index 5bce71f..6944546 100644 --- a/deploy.sh +++ b/deploy.sh @@ -1,5 +1,5 @@ #!/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 GITHUB_USER='dirtycajunrice'