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 6af4323 commit a417c6cCopy full SHA for a417c6c
.github/workflows/build-ui.yml
@@ -76,6 +76,7 @@ jobs:
76
uses: docker/build-push-action@v3
77
with:
78
context: ./ui
79
+ file: Dockerfile.production
80
build-args: |
81
ALEPH_TAG={{ version }}
82
push: true
ui/Dockerfile.production
@@ -1,4 +1,8 @@
1
-FROM ghcr.io/alephdata/aleph-ui:${ALEPH_TAG:-latest} AS builder
+ARG ALEPH_TAG
2
+FROM ghcr.io/investigativedata/aleph-ui-base:${ALEPH_TAG} AS builder
3
+LABEL org.opencontainers.image.source = "https://github.com/investigativedata/aleph-ui"
4
+
5
+RUN npm run messages
6
RUN npm run build
7
8
FROM nginx:alpine
0 commit comments