Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dockerfiles
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
Container Registry
Model registry
Operate
Environments
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Picasoft
Technique
Dockerfiles
Commits
258ea1b5
Commit
258ea1b5
authored
8 years ago
by
PICHOU Kyâne
Browse files
Options
Downloads
Patches
Plain Diff
Add a django image for picasoft webstatus page
parent
9c1920ae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pica-webstatus/Dockerfile
+24
-0
24 additions, 0 deletions
pica-webstatus/Dockerfile
pica-webstatus/requirements.txt
+3
-0
3 additions, 0 deletions
pica-webstatus/requirements.txt
with
27 additions
and
0 deletions
pica-webstatus/Dockerfile
0 → 100644
+
24
−
0
View file @
258ea1b5
FROM
python:3.6
MAINTAINER
kyane@kyane.fr
ENV
PYTHONUNBUFFERED 1
RUN
apt-get update
\
&&
apt-get
install
-y
--no-install-recommends
\
gcc
\
gettext
\
libssl-dev
\
libsasl2-dev
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
pip
install
--upgrade
pip
RUN
mkdir
/code
WORKDIR
/code
ADD
requirements.txt /code/
RUN
pip
install
-r
requirements.txt
ADD
. /code/
EXPOSE
8000
This diff is collapsed.
Click to expand it.
pica-webstatus/requirements.txt
0 → 100644
+
3
−
0
View file @
258ea1b5
Django==1.11
mongoengine>=0.12.0
requests
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment