17 lines
430 B
YAML
17 lines
430 B
YAML
name: Build Docker containers
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build:
|
|
container:
|
|
image: alpine:latest
|
|
steps:
|
|
- name: Install dependencies
|
|
run: apk add docker nodejs
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Build docker image
|
|
run: docker build -t git.arinity.org/ctmesh/map:latest .
|
|
- name: Push image
|
|
run: docker push git.arinity.org/ctmesh/map:latest
|