From 1af13b49eb298d6fa07303a51aef7d151d31e940 Mon Sep 17 00:00:00 2001 From: master Date: Tue, 30 May 2023 21:27:42 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9579190..8864aa5 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 -r requirements.txt +RUN pip install --default-timeout=100 -r requirements.txt FROM --platform=$BUILDPLATFORM node:18-alpine AS app-base WORKDIR /app