Skip to content

Commit

Permalink
Merge pull request #69 from epam/development
Browse files Browse the repository at this point in the history
hotfix: merge dependency updates
  • Loading branch information
Oleksii-Klimov authored Feb 13, 2024
2 parents 16e633d + c32707b commit 5f9eed7
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 111 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ updates:
directory: "/"
schedule:
interval: "weekly"
day: "wednesday"
time: "09:00"
day: "tuesday"
time: "13:34"
# Disable version updates, keep security updates only
open-pull-requests-limit: 0
commit-message:
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ FROM python:3.11-alpine AS builder

ARG POETRY_VERSION=1.6.1

# Vulnerability fix: CVE-2023-5363
RUN apk update && apk upgrade --no-cache libcrypto3 libssl3

# Install alpine-sdk to compile some langchain dependencies (numexpr, numpy)
RUN apk add --no-cache alpine-sdk linux-headers

Expand Down Expand Up @@ -37,6 +34,8 @@ ENV LOG_LEVEL=INFO

# Vulnerability fix: CVE-2023-5363
RUN apk update && apk upgrade --no-cache libcrypto3 libssl3
# Vulnerability fix: CVE-2023-52425
RUN apk upgrade --no-cache libexpat

# Install libstdc++ to run the compiled dependencies
RUN apk add --no-cache libstdc++
Expand Down
Loading

0 comments on commit 5f9eed7

Please sign in to comment.