Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Salamander - API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Herman Andersen Dyrkorn
Salamander - API
Merge requests
!54
Draft: Resolve "docker"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Open
Draft: Resolve "docker"
51-docker
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Open
Draft: Resolve "docker"
Herman Andersen Dyrkorn
requested to merge
51-docker
into
master
Jun 23, 2021
Overview
0
Commits
1
Pipelines
0
Changes
2
Closes
#51
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
5323d734
1 commit,
Jun 23, 2021
2 files
+
21
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Dockerfile
0 → 100644
+
17
−
0
View file @ 85d19942
Edit in single-file editor
Open in Web IDE
# syntax=docker/dockerfile:1
FROM
ubuntu:20.04
RUN
apt-get update
-y
&&
\
apt-get
install
-y
python3-pip python-dev
COPY
. /app
WORKDIR
/app
RUN
pip
install
-r
requirements.txt
EXPOSE
5000
ENTRYPOINT
[ "python3" ]
CMD
[ "run.py" ]
\ No newline at end of file
Loading