Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
validata-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Validata
validata-ui
Commits
b15d3d81
Commit
b15d3d81
authored
Jun 24, 2019
by
Christophe Benz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Dockerfile
Dockerfile
+3
-3
No files found.
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
Markdown
is supported
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