We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0434942 commit e1385e1Copy full SHA for e1385e1
.github/workflows/docker-publish.yaml
@@ -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
@@ -0,0 +1,2 @@
+FROM docker.io/bitnami/discourse:3.4.3-debian-12-r0
+RUN apt update && apt install -y build-essential
0 commit comments