Commit c57f8600 authored by Thomas Winkler's avatar Thomas Winkler
Browse files

Add new file

parent 37a92373
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+19 −0
Original line number Diff line number Diff line
image: docker:stable

# When using dind, it's wise to use the overlayfs driver for
# improved performance.
variables:
  DOCKER_DRIVER: overlay2
  RELEASE_IMAGE: gitlab.betapsi.tech:5555/prismplex/sharelatex-docker:latest

services:
- docker:dind

before_script:
  - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN gitlab.betapsi.tech:5555

build:
  stage: build
  script:
    - docker build --pull -t $RELEASE_IMAGE .
    - docker push $RELEASE_IMAGE