Skip to content
Snippets Groups Projects
Unverified Commit 3b910e30 authored by Robby3St's avatar Robby3St
Browse files

feat: initial commit

parent 20f1ccd0
Branches
No related tags found
No related merge requests found
Pipeline #282403 passed
stages:
- distribute
distribute:
only:
- main
stage: distribute
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"${CI_REGISTRY}\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}:1.0.0"
FROM debian:12-slim
RUN apt-get update && apt-get install -y curl chromium
WORKDIR /usr/bin/local
RUN curl -L -o decker https://github.com/decker-edu/decker/releases/download/latest/decker-latest-Linux-X64-3f4150d61ca167361b02665da969da769ca98e7c
RUN chmod +x decker
WORKDIR /
RUN mkdir app
WORKDIR /app
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment