Skip to content

Commit e1385e1

Browse files
add dockerfile
1 parent 0434942 commit e1385e1

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/docker-publish.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Docker
2+
3+
# This workflow uses actions that are not certified by GitHub.
4+
# They are provided by a third-party and are governed by
5+
# separate terms of service, privacy policy, and support
6+
# documentation.
7+
8+
on:
9+
workflow_dispatch:
10+
push:
11+
branches: [ "main" ]
12+
tags: ["*"]
13+
14+
jobs:
15+
call-docker-build:
16+
uses: ethdevops/workflows/.github/workflows/basic-docker-build.yaml@main
17+
secrets:
18+
docker_registry_user: ${{ secrets.DOCKER_REGISTRY_USER }}
19+
docker_registry_password: ${{ secrets.DOCKER_REGISTRY_SECRET }}
20+

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
FROM docker.io/bitnami/discourse:3.4.3-debian-12-r0
2+
RUN apt update && apt install -y build-essential

0 commit comments

Comments
 (0)