server-start-6

This commit is contained in:
Tony Rewin 2023-10-03 18:50:09 +03:00
parent f1d87044a5
commit e6d1fa5b07
2 changed files with 11 additions and 12 deletions

View File

@ -1,9 +1,10 @@
FROM python:3.8-slim FROM python:slim
WORKDIR /app WORKDIR /app
EXPOSE 8080 EXPOSE 8080
ADD nginx.conf.sigil ./ ADD nginx.conf.sigil ./
COPY requirements.txt . COPY requirements.txt .
RUN apt update && apt install -y gcc
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
COPY . . COPY . .
CMD ["python", "server.py"] CMD ["python", "server.py"]

View File

@ -1,12 +1,10 @@
sentry-sdk>=1.14.0 sentry-sdk
aioredis~=2.0.1 aioredis
ariadne>=0.17.0 ariadne
starlette~=0.23.1 starlette
starlette~=0.23.1 starlette
sqlalchemy>=1.4.41 sqlalchemy
graphql-core>=3.0.3 graphql-core
gql~=3.4.0 gql
uvicorn>=0.18.3 uvicorn
httpx httpx
yarl>=1.9.2
multidict>=6.0.4