mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2024-11-22 05:46:33 +03:00
dockerfiles
This commit is contained in:
parent
761991eae6
commit
a050dcaf08
19
apps/Dockerfile-api
Normal file
19
apps/Dockerfile-api
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM python:3.8.3-alpine
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
ENV PYTHONDONTWRITEBYTECODE 1
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
RUN apk update \
|
||||
&& apk add gcc python3-dev musl-dev libffi-dev openssl-dev make
|
||||
|
||||
COPY . .
|
||||
WORKDIR api/api
|
||||
RUN pip install --upgrade pip; pip install poetry; poetry config virtualenvs.create false; poetry install; poetry add uwsgi
|
||||
CMD poetry shell; uwsgi --master \
|
||||
--single-interpreter \
|
||||
--workers $WORKERS \
|
||||
--gevent $ASYNC_CORES \
|
||||
--protocol http \
|
||||
--socket 0.0.0.0:$APP_PORT \
|
||||
--module patched:app
|
15
docker-compose-api.yml
Normal file
15
docker-compose-api.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: "3.3"
|
||||
services:
|
||||
api:
|
||||
build:
|
||||
context: ./apps
|
||||
dockerfile: Dockerfile-api
|
||||
environment:
|
||||
- APP_PORT=8080
|
||||
- WORKERS=2
|
||||
- ASYNC_CORES=2000
|
||||
- NODE_NAME="Default node"
|
||||
- NODE_LOCATION="Undefined location"
|
||||
- ACCESS_TOKEN="CHANGE_TOKEN"
|
||||
ports:
|
||||
- "0.0.0.0:8080:8080"
|
Loading…
Reference in New Issue
Block a user