Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
ms-converter-GUI
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linsherpa
ms-converter-GUI
Commits
1d57cf8a
Commit
1d57cf8a
authored
1 week ago
by
linsherpa
Browse files
Options
Downloads
Patches
Plain Diff
Update file Dockerfile
parent
4f634d6b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+29
-0
29 additions, 0 deletions
Dockerfile
with
29 additions
and
0 deletions
Dockerfile
0 → 100644
+
29
−
0
View file @
1d57cf8a
FROM
ubuntu:22.04
RUN
apt-get update
&&
\
apt-get
install
-y
apt-utils
&&
\
apt-get
-y
install
systemd
&&
\
apt-get
-y
install
vim
&&
\
apt-get
install
-qy
curl
&&
\
apt-get
install
-y
nodejs
&&
\
apt-get
install
-y
docker.io
&&
\
apt-get
install
-y
python3-pip
&&
\
apt clean
-y
&&
\
apt autoclean
-y
ENV
THREAD=4
ENV
CPU=4
RUN
mkdir
/app
RUN
mkdir
/app/credentials
RUN
mkdir
/app/logs
RUN
mkdir
/app/static
RUN
mkdir
/app/templates
WORKDIR
/app
COPY
credentials /app/credentials
COPY
logs /app/logs
COPY
static /app/static
COPY
templates /app/templates
COPY
requirements.txt /app/
COPY
nfdi4chem_ms_converter_GUI.py /app
RUN
chmod
777
-R
/tmp
RUN
pip
install
--no-cache-dir
-r
requirements.txt
EXPOSE
5000
CMD
["sh", "-c", "uwsgi --http-socket :5000 --master --processes ${CPU} --threads ${THREAD} -w nfdi4chem_ms_converter_GUI:app --logto /app/serverlog.log"]
\ No newline at end of file
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