generated from security-union/yew-actix-template
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to protobuf and adding Dockerfile for video-daemon
- Loading branch information
1 parent
276f6f0
commit d02ae9b
Showing
21 changed files
with
1,684 additions
and
76 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
IMAGE_URL=securityunion/video-daemon:staging | ||
echo "Building image $IMAGE_URL" | ||
|
||
if ! docker build -t $IMAGE_URL . --file Dockerfile.video-daemon; then | ||
echo "Failed to build docker image" | ||
else | ||
docker push $IMAGE_URL | ||
echo "New image uploaded to $IMAGE_URL" | ||
fi |
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,4 +1,4 @@ | ||
FROM securityunion/rustlemania-api-base:push-images-to-dockerhub-304d6434 | ||
FROM securityunion/rustlemania-api-base:1.72-slim | ||
|
||
RUN rustup component add clippy-preview | ||
RUN rustup component add rustfmt |
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,4 +1,4 @@ | ||
FROM securityunion/yew:fix-image-no-cigar-c4770e96 | ||
FROM securityunion/yew:1.72-slim | ||
|
||
RUN rustup component add clippy-preview | ||
RUN rustup component add rustfmt |
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,7 +1,7 @@ | ||
FROM rust:1.65-slim-bullseye as development | ||
FROM rust:1.72-slim as development | ||
|
||
RUN rustup default nightly-2023-01-27 | ||
RUN rustup default nightly-2023-10-05 | ||
RUN apt-get --yes update && apt-get --yes install git pkg-config libssl-dev | ||
RUN cargo install wasm-bindgen-cli --version 0.2.78 | ||
RUN cargo install trunk --version 0.16.0 | ||
RUN rustup target add wasm32-unknown-unknown | ||
RUN cargo install wasm-bindgen-cli --version 0.2.87 | ||
RUN cargo install trunk --version 0.17.5 | ||
RUN rustup target add wasm32-unknown-unknown |
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.