mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 07:59:00 +03:00
test: fix ci
This commit is contained in:
parent
8545b9ca3b
commit
2f5088547a
38
.github/workflows/docker-build-test.yml
vendored
38
.github/workflows/docker-build-test.yml
vendored
@ -1,17 +1,18 @@
|
||||
name: Deploy Backend to Preview ECS
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
paths:
|
||||
- 'backend/core/**'
|
||||
- "backend/core/**"
|
||||
|
||||
env:
|
||||
ECR_REPOSITORY: quivr # set this to your Amazon ECR repository name
|
||||
ECS_SERVICE: quivr-preview # set this to your Amazon ECS service name
|
||||
ECS_CLUSTER: quivr # set this to your Amazon ECS cluster name # file, e.g. .aws/task-definition.json
|
||||
CONTAINER_NAME: quivr # set this to the name of the container in the
|
||||
# containerDefinitions section of your task definition
|
||||
ECR_REPOSITORY: quivr # set this to your Amazon ECR repository name
|
||||
ECS_SERVICE: quivr-preview # set this to your Amazon ECS service name
|
||||
ECS_CLUSTER: quivr # set this to your Amazon ECS cluster name # file, e.g. .aws/task-definition.json
|
||||
CONTAINER_NAME:
|
||||
quivr # set this to the name of the container in the
|
||||
# containerDefinitions section of your task definition
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
@ -22,18 +23,17 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./backend/
|
||||
working-directory: ./backend/core
|
||||
environment: production
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build
|
||||
id: build-image
|
||||
run: |
|
||||
# Build a docker container and
|
||||
# push it to ECR so that it can
|
||||
# be deployed to ECS.
|
||||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
|
||||
|
||||
- name: Build
|
||||
id: build-image
|
||||
run: |
|
||||
# Build a docker container and
|
||||
# push it to ECR so that it can
|
||||
# be deployed to ECS.
|
||||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
|
||||
|
@ -5,14 +5,14 @@ RUN apt-get update && apt-get install -y libgeos-dev pandoc
|
||||
|
||||
WORKDIR /code
|
||||
|
||||
COPY ./core/requirements.txt /code/requirements.txt
|
||||
COPY ./requirements.txt /code/requirements.txt
|
||||
|
||||
RUN pip install --no-cache-dir -r /code/requirements.txt --timeout 100
|
||||
|
||||
#You may need to run `chmod +x ./backend/core/scripts/start.sh` on your host machine if you get a permission error
|
||||
COPY ./core/scripts/start.sh /code/scripts/start.sh
|
||||
COPY ./scripts/start.sh /code/scripts/start.sh
|
||||
RUN chmod +x /code/scripts/start.sh
|
||||
|
||||
COPY ./core /code/
|
||||
COPY . /code
|
||||
|
||||
ENTRYPOINT ["bash", "/code/scripts/start.sh"]
|
||||
|
@ -8,13 +8,13 @@ RUN apt-get update && apt-get install -y liblzma-dev cmake git
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the requirements file
|
||||
COPY ./private/requirements.txt /app/requirements.txt
|
||||
COPY ./requirements.txt /app/requirements.txt
|
||||
|
||||
# Install Python dependencies
|
||||
RUN pip install --no-cache-dir -r /app/requirements.txt --timeout 100
|
||||
|
||||
# Copy your application's code to the Docker container
|
||||
COPY ./private /app
|
||||
COPY . /app
|
||||
|
||||
# Start the Uvicorn server on port 5051
|
||||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5051"]
|
||||
|
@ -19,8 +19,8 @@ services:
|
||||
env_file:
|
||||
- ./backend/core/.env
|
||||
build:
|
||||
context: backend
|
||||
dockerfile: core/Dockerfile
|
||||
context: backend/core
|
||||
dockerfile: Dockerfile
|
||||
container_name: backend-core
|
||||
restart: always
|
||||
volumes:
|
||||
|
@ -19,8 +19,8 @@ services:
|
||||
env_file:
|
||||
- ./backend/core/.env
|
||||
build:
|
||||
context: backend
|
||||
dockerfile: core/Dockerfile
|
||||
context: backend/core
|
||||
dockerfile: Dockerfile
|
||||
container_name: backend-core
|
||||
restart: always
|
||||
volumes:
|
||||
@ -32,8 +32,8 @@ services:
|
||||
env_file:
|
||||
- ./backend/private/.env
|
||||
build:
|
||||
context: backend
|
||||
dockerfile: private/Dockerfile
|
||||
context: backend/private
|
||||
dockerfile: Dockerfile
|
||||
container_name: backend-private
|
||||
restart: always
|
||||
volumes:
|
||||
|
@ -15,8 +15,8 @@ services:
|
||||
env_file:
|
||||
- ./backend/core/.env
|
||||
build:
|
||||
context: backend
|
||||
dockerfile: core/Dockerfile
|
||||
context: backend/core
|
||||
dockerfile: Dockerfile
|
||||
container_name: backend-core
|
||||
restart: always
|
||||
volumes:
|
||||
|
Loading…
Reference in New Issue
Block a user