im stupid
This commit is contained in:
parent
60a29316b7
commit
bc13505bdc
1 changed files with 7 additions and 5 deletions
12
Dockerfile
12
Dockerfile
|
@ -1,14 +1,16 @@
|
|||
FROM python:3.8.6
|
||||
FROM python:3.8.6-slim
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
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 \
|
||||
RUN apt-get update && \
|
||||
apt-get install -y curl && \
|
||||
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 && \
|
||||
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 && \
|
||||
apt remove -y curl
|
||||
|
||||
COPY README.md .
|
||||
|
|
Reference in a new issue