Compare commits

..

No commits in common. "50faf5775f450dfd70cfb26a41658998194f04d4" and "0e5c32cb0b001a19745c1a3aaafad11242a2c778" have entirely different histories.

2 changed files with 10 additions and 3 deletions

View File

@ -4,6 +4,16 @@ type: docker
name: build_lektor name: build_lektor
steps: steps:
- name: env
image: docker:dind
environment:
DOCKER_USERNAME:
from_secret: "docker_username"
DOCKER_PASSWORD:
from_secret: "docker_password"
commands:
- env
- nslookup registry.wtf-eg.net
- name: build - name: build
image: plugins/docker image: plugins/docker
settings: settings:

View File

@ -1,6 +1,3 @@
FROM python FROM python
VOLUME /workspace
RUN pip install --upgrade pip
RUN pip install Lektor RUN pip install Lektor