From 60a29316b732f109a8fd0db7c8eea0522ddc8d6e Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 6 Aug 2021 14:41:54 +0200 Subject: [PATCH] using flat python --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index d87d5ba..ce0df03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,11 @@ -FROM python:3.8.6-slim +FROM python:3.8.6 COPY requirements.txt . RUN pip install -r requirements.txt -RUN apt update -y \ - apt install -y curl \ - curl https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \ +RUN curl https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \ add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \ - apt update -y \ + apt update \ apt install -y adoptopenjdk-11-openj9 RUN curl -s -Lo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar \