Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Observatoire
observatoire-scripts
Commits
65e1ed6d
Commit
65e1ed6d
authored
Dec 30, 2019
by
Christophe Benz
Browse files
Optimize Dockerfile.ci with Docker best practices
parent
6b1689ad
Pipeline
#1790
passed with stages
in 149 minutes and 29 seconds
Changes
1
Pipelines
67
Hide whitespace changes
Inline
Side-by-side
Dockerfile.ci
View file @
65e1ed6d
...
@@ -2,8 +2,12 @@ FROM python:3.7-buster
...
@@ -2,8 +2,12 @@ FROM python:3.7-buster
LABEL maintainer="contact@jailbreak.paris"
LABEL maintainer="contact@jailbreak.paris"
RUN apt-get update
RUN apt-get update && apt-get install --yes --no-install-recommends \
RUN apt-get install -y python3-dev wget openssh-client sqlite3 csvkit
csvkit \
openssh-client \
python3-dev \
sqlite3 \
wget
COPY requirements.txt .
COPY requirements.txt .
RUN pip install -
r
requirements.txt
RUN pip install -
-no-cache-dir --requirement
requirements.txt
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