Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
c3buttons
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
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
fejao
c3buttons
Merge requests
!1
Adding files 01
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding files 01
Adding_files_01
into
main
Overview
0
Commits
5
Pipelines
0
Changes
4
Merged
fejao
requested to merge
Adding_files_01
into
main
4 weeks ago
Overview
0
Commits
5
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
748967d8
Prev
Next
Show latest version
4 files
+
188
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
748967d8
Added docker
· 748967d8
fejao
authored
4 weeks ago
docker/django/Dockerfile
0 → 100644
+
30
−
0
Options
FROM
python:3.10.15-bullseye
# Set variables
ENV
DEBIAN_FRONTEND=noninteractive
ENV
TZ="Europe/Berlin"
# Install dependencies
RUN
apt-get update
-qq
&&
apt-get upgrade
-qqy
\
&&
apt-get
install
-qqy
\
python3-pip
\
htop
\
vim
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
# Create the folder at the container
WORKDIR
/c3buttons
# Install python requirements
COPY
../../django/requirements.txt ./
RUN
pip3
install
-r
requirements.txt
# Copy App
COPY
../../django/ .
### TEST
# CMD ["sleep", "10000000"]
### PROD
CMD
["python3", "manage.py", "runserver", "0.0.0.0:8000"]
Loading