Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abraryaser02 committed May 12, 2024
1 parent 64f71a8 commit 3c76a68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx-
- name: Build backend image
run: |
docker build -t backend-dev:latest -f services/backend/Dockerfile-dev .
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions services/backend/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ ENV PYTHONUNBUFFERED 1
WORKDIR /usr/src/app

# Install Python dependencies
COPY ./requirements.txt /usr/src/app/requirements.txt
COPY requirements.txt /usr/src/app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Add entrypoint script and make it executable
COPY ./entrypoint.sh /usr/src/app/entrypoint.sh
COPY entrypoint.sh /usr/src/app/entrypoint.sh
RUN chmod +x /usr/src/app/entrypoint.sh

# Copy the rest of the application
Expand Down

0 comments on commit 3c76a68

Please sign in to comment.