Skip to content

Commit b748f2b

Browse files
committed
Pin debian version
1 parent 3b43490 commit b748f2b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

back_end/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "badgestore"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

back_end/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM rust:latest as builder
1+
FROM rust:1-bookworm as builder
22
WORKDIR /app
33
COPY Cargo.toml ./
44
COPY src/ ./src
55
RUN cargo install --path .
66

7-
FROM debian:buster-slim
7+
FROM debian:bookworm-slim
88
WORKDIR /app
99

1010
RUN export DEBIAN_FRONTEND=noninteractive
1111
RUN apt-get update && apt -y upgrade
12-
RUN apt-get -y install --no-install-recommends libssl1.1
12+
RUN apt-get -y install --no-install-recommends libssl-dev
1313

1414
COPY --from=builder /usr/local/cargo/bin/badgestore /app/badgestore
1515

front_end/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "badgestore_front_end",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"private": true,
55
"scripts": {
66
"dev": "vite dev",

0 commit comments

Comments
 (0)