Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
PyPCC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
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
LOFAR2.0
PyPCC
Merge requests
!17
Fix moving all python files to docker image context
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Fix moving all python files to docker image context
lukken/py-pcc-sim:master
into
master
Overview
1
Commits
13
Pipelines
2
Changes
1
1 unresolved thread
Hide all comments
Merged
Corné Lukken
requested to merge
lukken/py-pcc-sim:master
into
master
3 years ago
Overview
1
Commits
13
Pipelines
2
Changes
1
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 1
25787af4
3 years ago
master (base)
and
latest version
latest version
85c9339a
13 commits,
3 years ago
version 1
25787af4
12 commits,
3 years ago
1 file
+
4
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
+
4
−
3
Options
FROM
ubuntu:20.04
FROM
ubuntu:20.04
COPY
requirements.txt /requirements.txt
# Just copy everything
COPY
. /pypcc
RUN
apt-get update
&&
apt-get
install
-y
python3 python3-pip python3-yaml git
&&
\
RUN
apt-get update
&&
apt-get
install
-y
python3 python3-pip python3-yaml git
&&
\
pip3
install
-r
requirements.txt
pip3
install
-r
/pypcc/
requirements.txt
WORKDIR
.
/
WORKDIR
/
pypcc
Loading