Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Code analysis - Python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Test
Code analysis - Python
Commits
3d55b66e
Unverified
Commit
3d55b66e
authored
3 years ago
by
Roman Azarenko
Browse files
Options
Downloads
Patches
Plain Diff
Download binary shellcheck from upstream
parent
f9ae58ba
No related branches found
No related tags found
No related merge requests found
Pipeline
#19216
passed
3 years ago
Stage: Docker build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+8
-1
8 additions, 1 deletion
Dockerfile
with
8 additions
and
1 deletion
Dockerfile
+
8
−
1
View file @
3d55b66e
...
...
@@ -2,7 +2,14 @@ FROM python:3.6-slim
RUN
export
DEBIAN_FRONTEND
=
noninteractive
&&
\
apt-get update
&&
\
apt-get
-y
install
bash git
shellcheck
curl libxml2 libxslt1.1
&&
\
apt-get
-y
install
bash git curl libxml2 libxslt1.1
xz-utils
&&
\
rm
-rf
/var/lib/apt/lists/
*
RUN
pip
install
-U
flake8 pylint lxml ast-to-xml requests
RUN
mkdir
-p
/opt/shellcheck
&&
\
cd
/opt/shellcheck
&&
\
curl
-LO
https://github.com/koalaman/shellcheck/releases/download/v0.7.2/shellcheck-v0.7.2.linux.x86_64.tar.xz
&&
\
tar
-xf
*
.tar.xz
--strip-components
=
1
&&
\
rm
*
.tar.xz
&&
\
ln
-s
/opt/shellcheck/shellcheck /usr/bin
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