mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 17:27:31 +00:00
chore: setup build process (#30)
* chore: build * chore: on push * chore: runs on * chore: docker * chore: need * test * test * test * test * chore: missing steps * test * test * test * repo url * test with registry * path * yeah path * print path * path inside docker build * path * test * var * var * docker login vars * GH_Token * short sha * checkout git * typo * yaml fun * short sha * upload scan result * use sh * WIP GN8 Commit * Update .github/workflows/release.yml Co-Authored-By: livio-a <livio.a@gmail.com> * Update .github/workflows/release.yml Co-Authored-By: livio-a <livio.a@gmail.com> * Update .github/workflows/release.yml Co-Authored-By: livio-a <livio.a@gmail.com> * delete main.go in root * add coveralls * coveralls badge * docker ignore * move dockerfile * fix needs * try codecov * set user * try without default shell * try to add group and user * typo * add release step * update semrel * test * try * try it * typo * should work Co-authored-by: livio-a <livio.a@gmail.com>
This commit is contained in:
5
build/.dockerignore
Normal file
5
build/.dockerignore
Normal file
@@ -0,0 +1,5 @@
|
||||
# Exclude system dirs
|
||||
|
||||
.dependabot
|
||||
.github
|
||||
.git
|
4
build/dockerfile-debug
Normal file
4
build/dockerfile-debug
Normal file
@@ -0,0 +1,4 @@
|
||||
FROM alpine:latest
|
||||
|
||||
COPY .build/angular /app/console
|
||||
COPY .build/go /app
|
10
build/dockerfile-prod
Normal file
10
build/dockerfile-prod
Normal file
@@ -0,0 +1,10 @@
|
||||
# FROM sratch
|
||||
FROM alpine:latest
|
||||
|
||||
RUN addgroup -S zitadel && adduser -S zitadel -G zitadel
|
||||
|
||||
USER zitadel
|
||||
|
||||
COPY .build/angular /app/console
|
||||
COPY .build/go /app
|
||||
|
Reference in New Issue
Block a user