mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Initial commit
This commit is contained in:
commit
b81b768b04
11 changed files with 1022 additions and 0 deletions
11
bot/Dockerfile
Normal file
11
bot/Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.6-alpine
|
||||
|
||||
RUN apk --no-cache add build-base
|
||||
|
||||
WORKDIR /app
|
||||
ADD requirements.txt /app
|
||||
RUN pip install --trusted-host pypi.python.org -r requirements.txt
|
||||
|
||||
ADD . /app
|
||||
ENTRYPOINT ["python", "main.py"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue