We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f968515 commit 59b8d65Copy full SHA for 59b8d65
Dockerfile
@@ -5,7 +5,7 @@ USER root
5
WORKDIR /app
6
7
COPY /api ./api
8
-COPY requirements.txt .
+COPY pyproject.toml .
9
COPY Makefile .
10
11
RUN apt-get update && apt-get install -y git make
scripts/docker_build.py
@@ -4,9 +4,9 @@
4
import api
os.system(
- f"docker build -t devgoldy/aghpb_api:{api.__version__} --build-arg ARCH=amd64 ."
+ f"docker buildx build -t devgoldy/aghpb_api:{api.__version__} --build-arg ARCH=amd64 ."
)
- "docker build -t devgoldy/aghpb_api:latest --build-arg ARCH=amd64 ."
+ "docker buildx build -t devgoldy/aghpb_api:latest --build-arg ARCH=amd64 ."
12
0 commit comments