Skip to content

Commit 12fe054

Browse files
authored
supernova image supporting TLS (#64)
1 parent 80d6ec4 commit 12fe054

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.github/workflows/lint.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Lint Go Code
2+
13
on:
24
workflow_call:
35
workflow_dispatch:

.github/workflows/main.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Main Branch - Build & Test
2+
13
on:
24
push:
35
branches:

.github/workflows/test.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Go Tests
2+
13
on:
24
workflow_call:
35
workflow_dispatch:

Dockerfile.release

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
FROM scratch
1+
# NOTE: using `scratch` as BASE image wouls lack of CA certicates
2+
FROM golang:1.23-alpine
23
COPY supernova /
3-
ENTRYPOINT [ "/supernova" ]
4+
ENTRYPOINT [ "/supernova" ]

0 commit comments

Comments
 (0)