Skip to content

Commit

Permalink
fix: add Dockerfile ARGs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikucat0309 committed Feb 7, 2024
1 parent 9c46680 commit 205ae66
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM debian:trixie-slim AS builder
ARG TARGETARCH
ARG TARGETVARIANT

ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /app
Expand Down Expand Up @@ -32,6 +34,8 @@ python3 -m venv .venv
EOS

FROM debian:trixie-slim
ARG TARGETARCH
ARG TARGETVARIANT

ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /app
Expand Down

0 comments on commit 205ae66

Please sign in to comment.