Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Docker-Images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmytro Bogatov
Docker-Images
Commits
e3c80693
Verified
Commit
e3c80693
authored
Feb 18, 2022
by
Dmytro Bogatov
Browse files
Options
Downloads
Patches
Plain Diff
PDF link checker multi arch.
parent
483c750a
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#24869
passed
Feb 18, 2022
Stage: generate-ci
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
images/pdf-link-checker/Dockerfile
+19
-3
19 additions, 3 deletions
images/pdf-link-checker/Dockerfile
with
19 additions
and
3 deletions
images/pdf-link-checker/Dockerfile
+
19
−
3
View file @
e3c80693
FROM
dbogatov/docker-sources:pdf-link-checker-latest
FROM
dbogatov/docker-sources:node--17-alpine-multi-arch
AS
node
FROM
dbogatov/docker-sources:python--2.7-alpine-multi-arch
COPY
--from=node /usr/lib /usr/lib
COPY
--from=node /usr/local/share /usr/local/share
COPY
--from=node /usr/local/lib /usr/local/lib
COPY
--from=node /usr/local/include /usr/local/include
COPY
--from=node /usr/local/bin /usr/local/bin
RUN
node
-v
RUN
npm
-v
LABEL
maintainer="Dmytro Bogatov <dmytro@dbogatov.org>"
COPY
checker.py /
ENV
PYTHONWARNINGS "ignore"
ENV
ALPINE_MIRROR "http://dl-cdn.alpinelinux.org/alpine"
RUN
echo
"
${
ALPINE_MIRROR
}
/edge/main"
>>
/etc/apk/repositories
RUN
apk add
--no-cache
nodejs-current npm
--repository
=
"http://dl-cdn.alpinelinux.org/alpine/edge/community"
RUN
apk add
--no-cache
bash gcc libc-dev
--repository
=
"http://dl-cdn.alpinelinux.org/alpine/edge/community"
# nodejs-current npm
RUN
npm
install
-g
broken-links-inspector
RUN
pip
install
pdfminer.six
COPY
checker.py /
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment