-
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.
v1.3.0 Merge
- Loading branch information
Showing
11 changed files
with
152 additions
and
121 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
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
FROM amd64/python:3.7.2-alpine | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
LABEL maintainers="dirtycajunrice,circa10a" | ||
|
||
ENV TZ UTC | ||
|
||
WORKDIR /app | ||
|
||
COPY /requirements.txt /setup.py /ouroboros /README.md /app/ | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY /pyouroboros /app/pyouroboros | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir . | ||
RUN 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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
FROM arm32v6/python:3.7.2-alpine | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
LABEL maintainers="dirtycajunrice,circa10a" | ||
|
||
ENV TZ UTC | ||
|
||
WORKDIR /app | ||
|
||
COPY /requirements.txt /setup.py /ouroboros /README.md /app/ | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY /pyouroboros /app/pyouroboros | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir . | ||
RUN 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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
FROM arm64v8/python:3.7.2-alpine | ||
|
||
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant" | ||
LABEL maintainers="dirtycajunrice,circa10a" | ||
|
||
ENV TZ UTC | ||
|
||
WORKDIR /app | ||
|
||
COPY /requirements.txt /setup.py /ouroboros /README.md /app/ | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY /pyouroboros /app/pyouroboros | ||
|
||
RUN apk add --no-cache tzdata && \ | ||
pip install --no-cache-dir . | ||
RUN 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
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 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VERSION = "1.2.1" | ||
VERSION = "1.3.0" | ||
BRANCH = "master" |
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
Oops, something went wrong.