-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.6.0 Merge
- Loading branch information
Showing
21 changed files
with
671 additions
and
444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM arm32v6/python:3.7.2-alpine | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
|
||
COPY / /app | ||
|
||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static | ||
|
||
WORKDIR /app | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir . | ||
|
||
ENTRYPOINT ["ouroboros"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM arm64v8/python:3.7.2-alpine | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
|
||
COPY / /app | ||
|
||
COPY /tmp/qemu-aarch64-static /usr/bin/qemu-aarch64-static | ||
|
||
WORKDIR /app | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir . | ||
|
||
ENTRYPOINT ["ouroboros"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM arm32v7/python:3.7.2-slim | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
|
||
COPY / /app | ||
|
||
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static | ||
|
||
WORKDIR /app | ||
|
||
RUN pip install --no-cache-dir . | ||
|
||
ENTRYPOINT ["ouroboros"] |
Oops, something went wrong.