Skip to content

Commit b4db844

Browse files
committed
fix: add git in dockerfile, remove arm64 build
1 parent 453f53c commit b4db844

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
platform: [linux/amd64, linux/arm64]
19+
platform: [linux/amd64]
2020
steps:
2121
- name: Set environment variable
2222
run: echo "IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/stackclass-server" >> $GITHUB_ENV

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "backend"
33
description = "Backend API and services for StackClass"
4-
version = "0.21.0"
4+
version = "0.22.0"
55
edition = "2024"
66

77
default-run = "stackclass-server"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ FROM debian:bookworm-slim AS runtime
4242
WORKDIR /app
4343

4444
RUN apt-get update && apt-get install -y --no-install-recommends \
45-
ca-certificates \
45+
ca-certificates git \
4646
&& apt-get clean \
4747
&& rm -rf /var/lib/apt/lists/*
4848

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": {
77
"name": ""
88
},
9-
"version": "0.21.0"
9+
"version": "0.22.0"
1010
},
1111
"paths": {
1212
"/v1/courses": {

0 commit comments

Comments
 (0)