Skip to content
Snippets Groups Projects
Commit cccc2305 authored by Philipp Goymann's avatar Philipp Goymann
Browse files

Merge branch 'unstabel' into 'master'

Unstabel

See merge request !5
parents e2482649 1982bfbb
No related branches found
No related tags found
1 merge request!5Unstabel
Pipeline #362567 passed
variables:
GIT_SUBMODULE_STRATEGY: normal
stages: # List of stages for jobs, and their order of execution
- build_prod
build-prod: # This job runs in the build stage, which runs first.
stage: build_prod
image: docker:latest
services:
- name: docker:dind
alias: docker
before_script:
- apk update && apk add git
- apt-get update -qq && apt-get install -y -qq git
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- docker build --pull -t "$CI_REGISTRY_IMAGE:latest" .
- docker push "$CI_REGISTRY_IMAGE:latest"
FROM python
COPY . .
RUN apt-get update && apt-get install -y \
python3-pip
RUN python setup.py install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment