From 0a58f907a2cc465934dfab5d3aab13a7148f9687 Mon Sep 17 00:00:00 2001 From: mckunda Date: Sat, 28 Jan 2023 03:47:23 +0000 Subject: [PATCH] ci(docker): remove pings --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a713d86..57e7d25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ FROM python:3.11-alpine COPY requirements.txt / -RUN ping -4 -c 4 pypi.org -RUN ping -6 -c 4 pypi.org RUN pip3 install -r /requirements.txt COPY . /app