Skip to content

Commit a342df8

Browse files
committed
try updating alpine
1 parent c7b607f commit a342df8

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

.github/workflows/all.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,29 @@ jobs:
1919
run: |
2020
sudo apt update
2121
sudo apt install -y llvm-dev libclang-dev clang
22-
- name: Install rust
23-
uses: moonrepo/setup-rust@v1
24-
- name: Checkout code
25-
uses: actions/checkout@v4
26-
- name: Build project
27-
run: cargo build
28-
- name: Test project
29-
run: cargo test
30-
- name: Setup Pages
31-
# if: github.ref == 'refs/heads/main'
32-
uses: actions/configure-pages@v5
33-
- name: Create documents
34-
# if: github.ref == 'refs/heads/main'
35-
run: cargo doc --no-deps
36-
- name: Upload documents artifact
37-
# if: github.ref == 'refs/heads/main'
38-
uses: actions/upload-pages-artifact@v3
39-
with:
40-
path: './target/doc/'
41-
- name: Deploy to GitHub Pages
42-
# if: github.ref == 'refs/heads/main'
43-
id: deployment
44-
uses: actions/deploy-pages@v4
22+
# - name: Install rust
23+
# uses: moonrepo/setup-rust@v1
24+
# - name: Checkout code
25+
# uses: actions/checkout@v4
26+
# - name: Build project
27+
# run: cargo build
28+
# - name: Test project
29+
# run: cargo test
30+
# - name: Setup Pages
31+
# # if: github.ref == 'refs/heads/main'
32+
# uses: actions/configure-pages@v5
33+
# - name: Create documents
34+
# # if: github.ref == 'refs/heads/main'
35+
# run: cargo doc --no-deps
36+
# - name: Upload documents artifact
37+
# # if: github.ref == 'refs/heads/main'
38+
# uses: actions/upload-pages-artifact@v3
39+
# with:
40+
# path: './target/doc/'
41+
# - name: Deploy to GitHub Pages
42+
# # if: github.ref == 'refs/heads/main'
43+
# id: deployment
44+
# uses: actions/deploy-pages@v4
4545
- name: Login to Github registry
4646
# if: github.ref == 'refs/heads/main'
4747
uses: docker/login-action@v2

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# --- Build ---
22

3-
FROM alpine:3.21.3 AS builder
3+
FROM alpine:3.23.3 AS builder
44

55
ARG RUST_LOG=info
66

@@ -24,7 +24,7 @@ RUN cargo build --release
2424

2525
# --- Deploy ---
2626

27-
FROM alpine:3.21.3
27+
FROM alpine:3.23.3
2828

2929
WORKDIR /srv
3030
COPY --from=builder /usr/lib/libgcc_s.so.1 /usr/lib/

0 commit comments

Comments
 (0)