File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 3737 FRONTEND_CONTAINER_NAME : biois-frontend
3838
3939 steps :
40+ - uses : extractions/setup-just@v3
41+
4042 - name : Modify TAG_NAME if on `tag_name` is set on `workflow_dispatch`
4143 if : github.event.inputs.tag_name != ''
4244 run : |
@@ -55,11 +57,11 @@ jobs:
5557
5658 - name : Push image to quay.io
5759 run : |
58- podman push ${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}} quay.io/geoengine/${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}}
59- podman push ${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}} quay.io/geoengine/${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}}
60+ podman push ${{env.BACKEND_CONTAINER_NAME}}:latest quay.io/geoengine/${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}}
61+ podman push ${{env.FRONTEND_CONTAINER_NAME}}:latest quay.io/geoengine/${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}}
6062
6163 - name : Push nightly with date
6264 if : env.TAG_NAME == 'nightly'
6365 run : |
64- podman push ${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}} quay.io/geoengine/${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}}-$(date +'%Y-%m-%d')
65- podman push ${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}} quay.io/geoengine/${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}}-$(date +'%Y-%m-%d')
66+ podman push ${{env.BACKEND_CONTAINER_NAME}}:latest quay.io/geoengine/${{env.BACKEND_CONTAINER_NAME}}:${{env.TAG_NAME}}-$(date +'%Y-%m-%d')
67+ podman push ${{env.FRONTEND_CONTAINER_NAME}}:latest quay.io/geoengine/${{env.FRONTEND_CONTAINER_NAME}}:${{env.TAG_NAME}}-$(date +'%Y-%m-%d')
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ FROM gcr.io/distroless/cc-debian13:nonroot
3535COPY --from=builder /usr/src/biois/target/release/biois /usr/local/bin/biois
3636COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
3737
38+ WORKDIR /biois
39+
3840USER nonroot
3941EXPOSE 4040
4042ENTRYPOINT ["/usr/local/bin/biois" ]
You can’t perform that action at this time.
0 commit comments