-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from geoblocks/fix-ci
fix(ci): repair publish docker workflow
- Loading branch information
Showing
3 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,17 @@ RUN npm run build # && npm run doc | |
FROM nginxinc/nginx-unprivileged:1.27-bookworm-perl AS server | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/geoblocks/ngv" | ||
LABEL org.opencontainers.image.url="https://github.com/geoblocks/ngv" | ||
LABEL org.opencontainers.image.title="ngv-ui" | ||
LABEL org.opencontainers.image.description="UI container for the Modern 3D viewer" | ||
LABEL org.opencontainers.image.version="" | ||
LABEL org.opencontainers.image.licenses="" | ||
LABEL org.opencontainers.image.revision="" | ||
LABEL maintainer="Guillaume Beraudo <[email protected]>" | ||
|
||
COPY --from=builder /app/dist /usr/share/nginx/html | ||
|
||
# The nginx.conf.template file is used to configure the nginx server. | ||
# The .conf.template files are used to configure the nginx server. | ||
# In the entrypoint, the environment variables are automatically replaced. | ||
# See docs for more information: https://hub.docker.com/_/nginx | ||
COPY docker/*.conf.template /etc/nginx/templates/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
services: | ||
viewer: | ||
image: ghcr.io/geoblocks/ngv-ui | ||
build: | ||
context: . | ||
env_file: .env | ||
|