Skip to content

Commit b14186a

Browse files
Master Merge v0.6.0
v0.6.0 Merge
2 parents fcc955d + a4bbfb3 commit b14186a

21 files changed

+671
-444
lines changed

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
sudo: true
2+
dist: xenial
13
language: python
24
python:
3-
- 3.6
5+
- 3.7.2
46
services:
57
- docker
8+
addons:
9+
apt:
10+
packages:
11+
- docker-ce
612

713
script:
814
- pip install flake8 && flake8 *.py pyouroboros/
@@ -15,8 +21,11 @@ deploy:
1521
skip_existing: true
1622
on:
1723
branch: master
18-
1924
- provider: script
20-
script: bash ./deploy.sh
25+
script: bash deploy.sh
2126
on:
2227
branch: master
28+
- provider: script
29+
script: bash deploy.sh
30+
on:
31+
branch: develop

CHANGELOG.md

Lines changed: 255 additions & 0 deletions
Large diffs are not rendered by default.

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM python:3.7-alpine
1+
FROM amd64/python:3.7.2-alpine
2+
3+
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant"
24

35
COPY / /app
46

@@ -7,4 +9,4 @@ WORKDIR /app
79
RUN apk add --no-cache tzdata && \
810
pip install --no-cache-dir .
911

10-
ENTRYPOINT ["ouroboros"]
12+
ENTRYPOINT ["ouroboros"]

Dockerfile-aarch64.rpi

Lines changed: 0 additions & 7 deletions
This file was deleted.

Dockerfile-arm.rpi

Lines changed: 0 additions & 7 deletions
This file was deleted.

Dockerfile.arm

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM arm32v6/python:3.7.2-alpine
2+
3+
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant"
4+
5+
COPY / /app
6+
7+
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
8+
9+
WORKDIR /app
10+
11+
RUN apk add --no-cache tzdata && \
12+
pip install --no-cache-dir .
13+
14+
ENTRYPOINT ["ouroboros"]

Dockerfile.arm64

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM arm64v8/python:3.7.2-alpine
2+
3+
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant"
4+
5+
COPY / /app
6+
7+
COPY /tmp/qemu-aarch64-static /usr/bin/qemu-aarch64-static
8+
9+
WORKDIR /app
10+
11+
RUN apk add --no-cache tzdata && \
12+
pip install --no-cache-dir .
13+
14+
ENTRYPOINT ["ouroboros"]

Dockerfile.armhf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM arm32v7/python:3.7.2-slim
2+
3+
LABEL maintainers="dirtycajunrice,circa10a,tkdeviant"
4+
5+
COPY / /app
6+
7+
COPY /tmp/qemu-arm-static /usr/bin/qemu-arm-static
8+
9+
WORKDIR /app
10+
11+
RUN pip install --no-cache-dir .
12+
13+
ENTRYPOINT ["ouroboros"]

0 commit comments

Comments
 (0)