Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • develop
  • main
  • new-changes
  • renovate/django-5.x
  • renovate/sentry-sdk-2.x
  • renovate/whitenoise-6.x
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v2.0.0
  • v2.0.1
  • v2.0.2
  • v2.0.3
  • v2.1.0
  • v3.0.0
  • v3.0.0-develop.1
  • v3.0.1
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.3
22 results

Target

Select target project
  • tobiasff3200/django-core
1 result
Select Git revision
  • develop
  • main
  • new-changes
  • renovate/django-5.x
  • renovate/sentry-sdk-2.x
  • renovate/whitenoise-6.x
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v2.0.0
  • v2.0.1
  • v2.0.2
  • v2.0.3
  • v2.1.0
  • v3.0.0
  • v3.0.0-develop.1
  • v3.0.1
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.3
22 results
Show changes
Commits on Source (6)
......@@ -151,3 +151,4 @@ wedding/
wishlist/
trips/
/static/core/css/output.css
/media/*
version: 25
jobs:
- name: Git Sync Push
steps:
- !PushRepository
name: Push to gitlab.fachschaften.org
remoteUrl: https://gitlab.fachschaften.org/tobiasff3200/django-core.git
userName: Tobias
passwordSecret: GitLab.Fachschaften.org_Sync_Token
force: false
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
triggers:
- !BranchUpdateTrigger {}
- !TagCreateTrigger {}
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 3600
- name: Git Sync Pull
steps:
- !PullRepository
name: Pull from gitlab.fachschaften.org
remoteUrl: https://gitlab.fachschaften.org/tobiasff3200/django-core.git
syncToChildProject: false
userName: Tobias
passwordSecret: GitLab.Fachschaften.org_Sync_Token
refs: refs/heads/* refs/tags/*
withLfs: true
force: false
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
triggers:
- !ScheduleTrigger
cronExpression: 0 0 7/12 * * ? *
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 3600
......@@ -2,12 +2,10 @@ FROM python:3.12
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
RUN rm requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
RUN mkdir -p /app/db/
RUN chmod +x /app/start.sh
EXPOSE 8000
RUN mkdir -p /app/db/ && chmod +x /app/start.sh && rm requirements.txt && chown -R 1000:1000 /app
USER 1000
EXPOSE 8000
ENTRYPOINT ["./start.sh"]
File mode changed from 100644 to 100755