Skip to content

Commit

Permalink
24.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Donggyun Park committed Aug 16, 2024
1 parent 870bb98 commit 98533e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
tags: |
${{ env.IMAGE_NAME }}:1.0
${{ env.IMAGE_NAME }}:latest
#cache-from: type=local,src=/tmp/.buildx-cache
#cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Move cache
run: |
Expand Down
4 changes: 2 additions & 2 deletions dockerfile_multi_arch
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:22.04 AS builder
FROM ubuntu:24.10 AS builder

RUN apt-get update && apt-get install -y build-essential
COPY HelloWorld.c /HelloWorld.c
RUN gcc /HelloWorld.c -o /HelloWorld

FROM ubuntu:22.04
FROM ubuntu:24.10

COPY --from=builder /HelloWorld /HelloWorld
RUN apt-get update && \
Expand Down

0 comments on commit 98533e9

Please sign in to comment.