Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweaks #95

Merged
merged 1 commit into from
Jan 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
6 changes: 1 addition & 5 deletions Dockerfile.arm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 2 additions & 6 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 1 addition & 5 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
@@ -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'
Expand Down