Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Initial code
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Feb 18, 2024
0 parents commit 390c9b7
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: ci

on:
push:
branches:
- 'master'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: Jet-Engine/devspace-rust-container:latest
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ghcr.io/loft-sh/devspace-containers/rust:1.72-bullseye
LABEL authors="JetEngine Tech"
LABEL org.opencontainers.image.description "JetEngine's DevSpace Container for cutting edge Rust project development. - Latest Stable Compiler"

RUN apt update && apt upgrade -y &&\
rustup self update &&\
rustup update stable &&\
rustup default stable &&\
cargo install -f cargo-watch\
cargo-edit cargo-deny\
cargo-upgrades cargo-criterion\
cargo-udeps

0 comments on commit 390c9b7

Please sign in to comment.