update
This commit is contained in:
parent
daa05c5428
commit
13dd654f5a
1 changed files with 2 additions and 2 deletions
|
@ -3,11 +3,11 @@ FROM python:3.8.6-slim
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
RUN apt update \
|
RUN apt update -y \
|
||||||
apt install -y curl \
|
apt install -y curl \
|
||||||
curl https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \
|
curl https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \
|
||||||
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \
|
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \
|
||||||
apt update \
|
apt update -y \
|
||||||
apt install -y adoptopenjdk-11-openj9
|
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 \
|
RUN curl -s -Lo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar \
|
||||||
|
|
Reference in a new issue