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 f5baeaf commit 2c1b8b6Copy full SHA for 2c1b8b6
.dockerignore
@@ -0,0 +1,2 @@
1
+gofana
2
+dist
.gitignore
@@ -48,3 +48,6 @@ go.work.sum
48
## Vitepress
49
node_modules/
50
!docs/.vitepress
51
+
52
+## Docker
53
+!.dockerignore
Dockerfile
@@ -0,0 +1,12 @@
+FROM alpine:latest
3
+RUN apk --no-cache add ca-certificates
4
5
+RUN adduser -D -u 1001 -g 1001 gofana
6
7
+COPY gofana /usr/bin/
8
9
+USER gofana
10
+WORKDIR /home/gofana
11
12
+ENTRYPOINT ["gofana"]
0 commit comments