Skip to content
Snippets Groups Projects
Verified Commit 39b5fa4b authored by Andrej Ramašeuski's avatar Andrej Ramašeuski
Browse files

Initial release

parents
Branches
No related tags found
No related merge requests found
image: docker:19.03.1
variables:
DOCKER_TLS_CERTDIR: "/certs"
GIT_SUBMODULE_STRATEGY: recursive
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
services:
- docker:19.03.1-dind
before_script:
- apk update && apk add git
- git submodule sync
- git submodule update --init
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
build:
stage: build
script:
- docker build -t $IMAGE_TAG .
- docker push $IMAGE_TAG
FROM redmine:3.4.13
MAINTAINER Andrej Ramašeuski <andrej.ramaseuski@pirati.cz>
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential
COPY ./themes/ /usr/src/redmine/public/themes/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment