File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,18 @@ package-zip: extract-licenses
7171 zip -ur $$BUILD.zip ${LICENSE_DIR}; \
7272 done
7373
74- build-docker : require-version
74+ build-docker-amd64 : require-version
7575 cp ${BUILD_DIR} /gotify-linux-amd64 ./docker/gotify-app
7676 (cd ${DOCKER_DIR} && docker build -t gotify/server:latest -t gotify/server:${VERSION} .)
7777 rm ${DOCKER_DIR} gotify-app
7878
79+ build-docker-arm-7 : require-version
80+ cp ${BUILD_DIR} /gotify-linux-arm-7 ./docker/gotify-app
81+ (cd ${DOCKER_DIR} && docker build -f Dockerfile.armv7 -t gotify/server-arm7:latest -t gotify/server-arm7:${VERSION} .)
82+ rm ${DOCKER_DIR} gotify-app
83+
84+ build-docker : build-docker-amd64 build-docker-arm-7
85+
7986build-js :
8087 (cd ui && yarn build)
8188
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33docker login -u " $DOCKER_USERNAME " -p " $DOCKER_PASSWORD " ;
4- docker push gotify/server
4+ docker push gotify/server
5+ docker push gotify/server-arm7
Original file line number Diff line number Diff line change 1+ FROM arm32v7/debian
2+ WORKDIR /app
3+ ADD gotify-app /app/
4+ ENTRYPOINT ["./gotify-app"]
You can’t perform that action at this time.
0 commit comments