?
This commit is contained in:
parent
cc66d6c10c
commit
3a4a28c413
1 changed files with 4 additions and 4 deletions
|
@ -3,10 +3,10 @@ FROM python:3.8.6-slim
|
|||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
RUN apt update && \
|
||||
apt install -y openjdk-11-jdk curl && \
|
||||
curl -sLo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar && \
|
||||
apt remove curl
|
||||
RUN apt update
|
||||
RUN apt install -y openjdk-11-jdk curl
|
||||
RUN curl -sLo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar
|
||||
RUN apt remove curl
|
||||
|
||||
COPY README.md .
|
||||
COPY src .
|
||||
|
|
Reference in a new issue