Skip to content
Snippets Groups Projects
Verified Commit 1fe1a94d authored by Renato Alves's avatar Renato Alves :seedling:
Browse files

Add dockerfile and gitlab CI instructions

parent 2504878a
No related branches found
No related tags found
No related merge requests found
Pipeline #15451 passed
image: git.embl.de:4567/grp-bio-it-workshops/intermediate-python
variables:
LC_ALL: "C.UTF-8"
MAKEFLAGS: "-j 8"
pages:
stage: deploy
script:
- make lesson-check
- make lesson-check-all
- make site
- mv _site public
artifacts:
paths:
- public
only:
- master
FROM jekyll/jekyll
RUN apk --no-cache add \
py3-yaml \
&& gem install json kramdown
#!/usr/bin/env bash
set -euxo pipefail
docker build -t git.embl.de:4567/grp-bio-it-workshops/intermediate-python .
# If successful update the image
docker login git.embl.de:4567
docker push git.embl.de:4567/grp-bio-it-workshops/intermediate-python
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