mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 22:07:55 +00:00
12 lines
211 B
Text
12 lines
211 B
Text
|
|
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"]
|
||
|
|
|