Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
analytics-engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Polaris
analytics-engine
Commits
a8cb2f66
Commit
a8cb2f66
authored
Jan 26, 2023
by
Max Lou
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' of git.rwth-aachen.de:polaris/entwicklung/analytics-engine
parents
26466998
26e614b5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#902790
passed
Jan 26, 2023
Stage: build
Stage: deploy
Pipeline: FIRST_START
#902806
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
scheduler/Dockerfile
+13
-2
13 additions, 2 deletions
scheduler/Dockerfile
with
14 additions
and
3 deletions
.gitlab-ci.yml
+
1
−
1
View file @
a8cb2f66
...
@@ -35,4 +35,4 @@ scheduler-docker-build:
...
@@ -35,4 +35,4 @@ scheduler-docker-build:
deploy
:
deploy
:
stage
:
deploy
stage
:
deploy
trigger
:
trigger
:
project
:
polaris/deployment
project
:
polaris/entwicklung/deployment
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
scheduler/Dockerfile
+
13
−
2
View file @
a8cb2f66
...
@@ -16,7 +16,18 @@ RUN apt-get update && apt-get install -y \
...
@@ -16,7 +16,18 @@ RUN apt-get update && apt-get install -y \
COPY
. /app
COPY
. /app
WORKDIR
/app
WORKDIR
/app
# set environment variables
ENV
PYTHONDONTWRITEBYTECODE 1
ENV
PYTHONUNBUFFERED 1
RUN
pip
install
.
RUN
pip
install
.
EXPOSE
5000
#EXPOSE 5000
CMD
["scheduler", "run"]
#CMD ["scheduler", "run"]
#Environment
ENV
VIRTUAL_ENV /env
ENV
PATH /env/bin:$PATH
#Gunicorn Server
CMD
["gunicorn", "--bind", ":5000", "--workers", "3", "scheduler.wsgi"]
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
sign in
to comment