update rust

This commit is contained in:
GroovieGermanikus 2024-06-25 20:51:20 +02:00
parent 836ee631df
commit 3f3f36295c
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
2 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,8 @@ name: Deploy to Fly
on:
push:
branches: [main]
tags:
- 'experimental/*'
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

View File

@ -1,7 +1,5 @@
# syntax = docker/dockerfile:1.2
FROM rust:1.70.0 as base
RUN cargo install cargo-chef@0.1.62 --locked
RUN rustup component add rustfmt
FROM lukemathwalker/cargo-chef:0.1.67-rust-slim-bookworm as base
RUN apt-get update && apt-get install -y clang cmake ssh
WORKDIR /app