Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Student Allocator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Falmouth Computing
Student Allocator
Commits
cfb6654e
Commit
cfb6654e
authored
3 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
Add new file - dockerfile for toy project
parent
5fb2e649
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server/Dockerfile
+19
-0
19 additions, 0 deletions
server/Dockerfile
with
19 additions
and
0 deletions
server/Dockerfile
0 → 100644
+
19
−
0
View file @
cfb6654e
# This file is a template, and might need editing before it works on your project.
FROM
python:3.6-alpine
# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs.
# Or delete entirely if not needed.
RUN
apk
--no-cache
add postgresql-client
WORKDIR
/usr/src/app
COPY
requirements.txt /usr/src/app/
RUN
pip
install
--no-cache-dir
-r
requirements.txt
COPY
. /usr/src/app
EXPOSE
8080
#CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
# For some other command
CMD
["python", "main.py"]
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