From b762a594775722de81035695d2390941a0166af8 Mon Sep 17 00:00:00 2001 From: master Date: Tue, 30 May 2023 22:51:40 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8864aa5..92be370 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG TARGETPLATFORM="linux/amd64" FROM --platform=$BUILDPLATFORM python:alpine AS base WORKDIR /app COPY requirements.txt . -RUN pip install --default-timeout=100 -r requirements.txt +RUN pip3 install --default-timeout=100 -r requirements.txt FROM --platform=$BUILDPLATFORM node:18-alpine AS app-base WORKDIR /app