New build system (#179)

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Create build.json

* Update Dockerfile

* Update Dockerfile

* Create build.json

* Update build.json
This commit is contained in:
Pascal Vizeli
2017-09-25 00:12:26 +02:00
committed by GitHub
parent 881a8310d1
commit e939d8783c
11 changed files with 28 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,5 +1,5 @@
#armhf:FROM multiarch/debian-debootstrap:armhf-stretch
#amd64:FROM multiarch/debian-debootstrap:amd64-stretch
ARG BUILD_FROM
FROM $BUILD_FROM
# Install packages
RUN apt-get update \

View File

@@ -0,0 +1,6 @@
{
"build_from": {
"armhf": "multiarch/debian-debootstrap:armhf-stretch",
"amd64": "multiarch/debian-debootstrap:amd64-stretch"
}
}

View File

@@ -1,4 +1,5 @@
FROM %%BASE_IMAGE%%
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

View File

@@ -1,7 +1,5 @@
ARG BUILD_FROM
FROM $BUILD_FROM
#armhf:FROM snipsdocker/platform:arm-0.4.9
#amd64:FROM snipsdocker/platform:x86-0.4.9
# Copy data
COPY run.sh /

6
snips/build.json Normal file
View File

@@ -0,0 +1,6 @@
{
"build_from": {
"armhf": "snipsdocker/platform:arm-0.4.9",
"amd64": "snipsdocker/platform:x86-0.4.9"
}
}