Skip to content

Commit

Permalink
Merge pull request #163 from satisfactorymodding/bork-fixes
Browse files Browse the repository at this point in the history
2.24 - Update Nextcord and Psycopg from v2 to v3, restrict python to 3.12 for now
  • Loading branch information
Feyko authored Dec 30, 2024
2 parents 062143d + 9b2c878 commit fb425a6
Show file tree
Hide file tree
Showing 3 changed files with 408 additions and 326 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ FROM alpine AS runtime
VOLUME /config
WORKDIR /app

RUN apk update; apk add --no-cache python3 tesseract-ocr-data-eng re2-dev
RUN apk update; apk add --no-cache python3=~3.12 tesseract-ocr-data-eng re2-dev

FROM alpine AS build

WORKDIR /deps

RUN apk update; apk add --no-cache g++ git re2-dev poetry python3-dev
RUN apk update; apk add --no-cache g++ git re2-dev poetry python3-dev=~3.12

COPY pyproject.toml poetry.lock poetry.toml ./
RUN poetry env use $(which python)
Expand Down
Loading

0 comments on commit fb425a6

Please sign in to comment.