mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 06:17:55 +00:00
Add basic HTTP API
This commit is contained in:
parent
e831ef5921
commit
944f0093a9
13 changed files with 238 additions and 51 deletions
10
src/Dockerfile
Normal file
10
src/Dockerfile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue