Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PLV2_supply_chain_poc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Dominik Heinrich
PLV2_supply_chain_poc
Compare revisions
c8981f28095053a8af53b6e635eb1845e07d46df to db3b13d836952d1f0d2a3704ed7f2c47413586c5
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dominik.heinrich/plv2_supply_chain_poc
Select target project
No results found
db3b13d836952d1f0d2a3704ed7f2c47413586c5
Select Git revision
Swap
Target
dominik.heinrich/plv2_supply_chain_poc
Select target project
dominik.heinrich/plv2_supply_chain_poc
1 result
c8981f28095053a8af53b6e635eb1845e07d46df
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
added space
· ec9d33dc
David Horvát
authored
3 weeks ago
ec9d33dc
Merge branch 'main' of mygit.th-deg.de:dominik.heinrich/plv2_supply_chain_poc
· db3b13d8
David Horvát
authored
3 weeks ago
db3b13d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
web.Dockerfile
+4
-0
4 additions, 0 deletions
web.Dockerfile
with
4 additions
and
0 deletions
web.Dockerfile
View file @
db3b13d8
FROM
archlinux:latest
AS
packager
RUN
pacman-key
--init
RUN
pacman
-Sy
--noconfirm
base-devel git nginx
RUN
mkdir
/build
COPY
./files/ /build/
RUN
useradd
-m
max
&&
chown
-R
max:max /build
RUN
echo
"max ALL=(ALL:ALL) NOPASSWD: ALL"
>>
/etc/sudoers
USER
max
WORKDIR
/build/not_a_virus1.0
RUN
tar
-czf
default_package.tar.gz default_package/
RUN
makepkg
-s
--noconfirm
...
...
This diff is collapsed.
Click to expand it.