tangled
alpha
login
or
join now
serendipty01.dev
/
smokesignal
forked from
smokesignal.events/smokesignal
0
fork
atom
The smokesignal.events web application
0
fork
atom
overview
issues
pulls
pipelines
chore: Updating Dockerfile to use rust 1.90
Nick Gerakines
4 months ago
cf3bf2e6
53cc4130
+2
-2
2 changed files
expand all
collapse all
unified
split
Cargo.toml
Dockerfile
+1
-1
Cargo.toml
···
2
2
name = "smokesignal"
3
3
version = "1.0.2"
4
4
edition = "2024"
5
5
-
rust-version = "1.89"
5
5
+
rust-version = "1.90"
6
6
authors = ["Nick Gerakines <nick.gerakines@gmail.com>"]
7
7
description = "An event and RSVP management application."
8
8
readme = "README.md"
+1
-1
Dockerfile
···
1
1
# syntax=docker/dockerfile:1.4
2
2
-
FROM rust:1.89-slim-bookworm AS builder
2
2
+
FROM rust:1.90-slim-bookworm AS builder
3
3
4
4
RUN apt-get update && apt-get install -y \
5
5
pkg-config \