22 lines
395 B
YAML
22 lines
395 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: build-docker
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: tf2-casual
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: spaenny/casual-server
|
||
|
cache_from: "spaenny/casual-server:latest"
|
||
|
context: ./
|
||
|
dockerfile: ./Dockerfile
|
||
|
username:
|
||
|
from_secret: docker_username
|
||
|
password:
|
||
|
from_secret: docker_password
|