Skip to content

Commit a417c6c

Browse files
committed
🐛 damn
1 parent 6af4323 commit a417c6c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build-ui.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
uses: docker/build-push-action@v3
7777
with:
7878
context: ./ui
79+
file: Dockerfile.production
7980
build-args: |
8081
ALEPH_TAG={{ version }}
8182
push: true

ui/Dockerfile.production

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
FROM ghcr.io/alephdata/aleph-ui:${ALEPH_TAG:-latest} AS builder
1+
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
26
RUN npm run build
37

48
FROM nginx:alpine

0 commit comments

Comments
 (0)