некоторые правки

This commit is contained in:
artem 2023-04-27 13:18:35 +03:00
parent 814ec1e952
commit a4081bb71d
2 changed files with 12 additions and 2 deletions

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: "3"
services:
server:
image: ai:latest
ports:
- 4003:4003
volumes:
- ./:/app
restart: always

View File

@ -8,7 +8,7 @@ RUN pip3 install -r requirements.txt
COPY . /app/
EXPOSE 4150
WORKDIR /app/external_api
WORKDIR /app
ENTRYPOINT ["python", "main.py"]
ENTRYPOINT ["python", "server", "main.py"]