test build and deploy #10

Open
RaiLinKey wants to merge 10 commits from fix into test
Showing only changes of commit 8616f59c95 - Show all commits

View File

@@ -8,7 +8,7 @@ WORKDIR /app
# && rm -rf /var/lib/apt/lists/*
# Копирование кода приложения
COPY api/ .
COPY api/ api/
# Копирование зависимостей
# COPY requirements.txt .
@@ -22,4 +22,4 @@ RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
# Команда для запуска приложения
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000"]