-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: update docs dependencies * dev: update dev dependencies + Dockerimage * dev: minor refactoring * dev: remove `mypy` chekcs + workflow changes
- Loading branch information
Showing
40 changed files
with
273 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# initial builder | ||
FROM docker.io/python:3.7-slim-stretch as BUILD | ||
FROM docker.io/python:3.11-slim as BUILD | ||
|
||
COPY . /tmp | ||
WORKDIR /tmp | ||
|
@@ -18,13 +18,12 @@ RUN grep "# install" requirements.txt -A100 > docker.requirments.txt \ | |
&& sed -i 's/\/usr\/local/\/usr/g' /usr/local/bin/deadlinks | ||
|
||
|
||
FROM gcr.io/distroless/python3:latest | ||
FROM gcr.io/distroless/python3-debian12:debug | ||
LABEL maintainer "Oleg Butuzov <[email protected]>" | ||
|
||
ENV PYTHONPATH=/usr/local/lib/python3.7/site-packages | ||
ENV PYTHONPATH=/usr/local/lib/python3.11/site-packages | ||
|
||
COPY --from=BUILD ${PYTHONPATH} ${PYTHONPATH} | ||
# COPY --from=BUILD /usr/local/lib/libpython3.7m.so.1.0 /usr/lib/x86_64-linux-gnu/ | ||
COPY --from=BUILD /usr/local/bin/deadlinks /usr/local/bin/ | ||
|
||
WORKDIR /github/workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.