Skip to content

Commit

Permalink
Merge branch 'master' into workflow-sharing-modal
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanRosendal authored Dec 12, 2023
2 parents d69d25e + 2414316 commit 39fb0f4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
=======

Version 0.9.3 (2023-12-12)
--------------------------

- Adds metadata labels to Dockerfile.
- Changes version of NGINX Docker image from 1.19 to 1.25.

Version 0.9.2 (2023-12-06)
--------------------------

Expand Down
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,20 @@ RUN apt-get update -y && \
rm -rf /var/lib/apt/lists/*

# Serve frontend application
FROM docker.io/library/nginx:1.19
FROM docker.io/library/nginx:1.25
COPY --from=react-build /code/reana-ui/build /usr/share/nginx/html
COPY nginx/reana-ui.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

# Set image labels
LABEL org.opencontainers.image.authors="team@reanahub.io"
LABEL org.opencontainers.image.created="2023-12-12"
LABEL org.opencontainers.image.description="REANA reproducible analysis platform - web user interface component"
LABEL org.opencontainers.image.documentation="https://reana-ui.readthedocs.io/"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/reanahub/reana-ui"
LABEL org.opencontainers.image.title="reana-ui"
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-ui"
LABEL org.opencontainers.image.vendor="reanahub"
LABEL org.opencontainers.image.version="0.9.3"
2 changes: 1 addition & 1 deletion reana-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reana-ui",
"version": "0.9.2",
"version": "0.9.3",
"private": true,
"dependencies": {
"axios": "^1.5.1",
Expand Down

0 comments on commit 39fb0f4

Please sign in to comment.