Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
2d90360d63 |
3 changed files with 4 additions and 4 deletions
|
@ -22,6 +22,7 @@ jobs:
|
|||
registry: forge.k3s.fr
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
pull: true
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
|
|
|
@ -2,8 +2,7 @@ FROM docker.io/lukemathwalker/cargo-chef:latest-rust-1 AS chef
|
|||
WORKDIR /app
|
||||
|
||||
FROM chef AS planner
|
||||
COPY Cargo.* .
|
||||
ADD src src
|
||||
COPY . .
|
||||
RUN cargo chef prepare --recipe-path recipe.json
|
||||
|
||||
FROM chef AS builder
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
}
|
||||
|
||||
header {
|
||||
background: #1CD4FF;
|
||||
background: #007BFF;
|
||||
color: #ffffff;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
|
@ -32,7 +32,7 @@
|
|||
footer {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
background: #1CD4FF;
|
||||
background: #007BFF;
|
||||
color: white;
|
||||
/*position: fixed;*/
|
||||
bottom: 0;
|
||||
|
|
Loading…
Reference in a new issue