Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Images
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
1
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker
Images
Merge requests
!12
Introduce slim image for WP.org plugin deploys
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Introduce slim image for WP.org plugin deploys
add/debian-image
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Erick Hitter
requested to merge
add/debian-image
into
master
5 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
780f0a57
1 commit,
5 years ago
2 files
+
36
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
debian/wp-org-deploy/Dockerfile
0 → 100644
+
16
−
0
Options
FROM
debian:stretch-slim
LABEL
maintainer="ethitter"
LABEL
version="1.0"
RUN
echo
"deb http://security.debian.org/ stretch/updates main"
>>
/etc/apt/sources.list
RUN
apt-get update
\
&&
apt-get
-y
--no-install-recommends
install
\
ca-certificates
\
curl
\
git
\
rsync
\
subversion
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
Loading