Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Domain Data Mgmt Services
Seismic
Open ZGY
Commits
d6bf6fbf
Commit
d6bf6fbf
authored
Jul 30, 2021
by
Paal Kvamme
Browse files
Missing apt-get update made builds vulnerable to upstream changes.
parent
7898f6dd
Pipeline
#55453
passed with stages
in 23 minutes and 7 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
scripts/Dockerfile-bionic-test
View file @
d6bf6fbf
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
# Optional: Prepare for running unit tests
# Optional: Prepare for running unit tests
RUN tar xvf build/deploy/testscripts.tar; \
RUN tar xvf build/deploy/testscripts.tar; \
python3 -m pip install virtualenv; \
python3 -m pip install virtualenv; \
apt-get -y install bzip2 curl
apt-get
update; apt-get
-y install bzip2 curl
# Optional: Run as a regular user
# Optional: Run as a regular user
RUN useradd -u 800 -g users build; \
RUN useradd -u 800 -g users build; \
...
...
scripts/Dockerfile-buster-test
View file @
d6bf6fbf
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
# Optional: Prepare for running unit tests
# Optional: Prepare for running unit tests
RUN tar xvf build/deploy/testscripts.tar; \
RUN tar xvf build/deploy/testscripts.tar; \
python3 -m pip install virtualenv; \
python3 -m pip install virtualenv; \
apt-get -y install bzip2 curl
apt-get
update; apt-get
-y install bzip2 curl
# Optional: Run as a regular user
# Optional: Run as a regular user
RUN useradd -u 800 -g users build; \
RUN useradd -u 800 -g users build; \
...
...
scripts/Dockerfile-focal-test
View file @
d6bf6fbf
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
...
@@ -26,7 +26,7 @@ RUN python3 -m pip install build/deploy/wrapper/*/OpenZgyBindings-*.whl
# Optional: Prepare for running unit tests
# Optional: Prepare for running unit tests
RUN tar xvf build/deploy/testscripts.tar; \
RUN tar xvf build/deploy/testscripts.tar; \
python3 -m pip install virtualenv; \
python3 -m pip install virtualenv; \
apt-get -y install bzip2 curl
apt-get
update && apt-get
-y install bzip2 curl
# Optional: Run as a regular user
# Optional: Run as a regular user
RUN useradd -u 800 -g users build; \
RUN useradd -u 800 -g users build; \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment