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
Validata
Validata UI
Commits
b15d3d81
Commit
b15d3d81
authored
Jun 24, 2019
by
Christophe Benz
Browse files
Don't cache pip
parent
fe3c7dcb
Pipeline
#1087
passed with stage
in 4 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Dockerfile
View file @
b15d3d81
...
...
@@ -3,7 +3,7 @@ LABEL maintainer="admin-validata@jailbreak.paris"
EXPOSE
5000
RUN
pip
install
gunicorn
==
19.9.0
RUN
pip
install
--no-cache-dir
gunicorn
==
19.9.0
RUN
apt-get update
&&
\
apt-get
install
--yes
chromium
=
73.0.3683.75-1~deb9u1
...
...
@@ -11,9 +11,9 @@ RUN apt-get update && \
WORKDIR
/app
COPY
requirements.txt .
RUN
pip
install
--requirement
requirements.txt
RUN
pip
install
--no-cache-dir
--requirement
requirements.txt
COPY
. .
RUN
pip
install
--editable
.
RUN
pip
install
--no-cache-dir
--editable
.
CMD
gunicorn --bind 0.0.0.0:5000 validata_ui:app
\ No newline at end of file
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