Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iqdevTranningProj
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
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
Александр Плохих
iqdevTranningProj
Merge requests
!10
Dockerfile
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Dockerfile
Docker
into
main
Overview
5
Commits
3
Pipelines
0
Changes
1
4 unresolved threads
Hide all comments
Closed
Александр Плохих
requested to merge
Docker
into
main
11 months ago
Overview
5
Commits
3
Pipelines
0
Changes
1
4 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Compare
main
version 1
ff20c4d2
11 months ago
main (base)
and
latest version
latest version
6d2f7e14
3 commits,
11 months ago
version 1
ff20c4d2
1 commit,
11 months ago
1 file
+
14
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
0 → 100644
+
14
−
0
Options
FROM
php:alpine
VOLUME
./:./app
WORKDIR
app
COPY
. .
ENV
COMPOSER_ALLOW_SUPERUSER=1
RUN
curl
-sS
https://getcomposer.org/installer | php
--
--install-dir
=
/usr/local/bin
--filename
=
composer
RUN
composer
install
CMD
["php"]
\ No newline at end of file
Loading