Skip to content

Commit

Permalink
keeping hashes for security reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
aanand-gsa committed Jan 15, 2025
1 parent 6813ede commit 42d7fb5
Show file tree
Hide file tree
Showing 3 changed files with 1,267 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Create requirements.txt
shell: bash
run: poetry export --without-hashes --format=requirements.txt > requirements.txt
run: poetry export -f requirements.txt --output requirements.txt

- name: Deploy to dev environment
uses: 18f/cg-deploy-action@main
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ENV PYTHONPATH="${PYTHONPATH}:/app"
WORKDIR /app
COPY pyproject.toml poetry.lock ./
RUN poetry self add poetry-plugin-export
RUN poetry export --without-hashes --format=requirements.txt > requirements.txt
RUN poetry export -f requirements.txt --output requirements.txt
RUN pip install -r requirements.txt

# Copy application code and compile Python bytecode
Expand Down
Loading

0 comments on commit 42d7fb5

Please sign in to comment.