Skip to content
Snippets Groups Projects
Commit d3e7226d authored by Kotyba Alhaj Taha's avatar Kotyba Alhaj Taha
Browse files

Merge branch 'revert-aefafab4' into 'master'

Revert "Merge branch 'UFZ_test_deploy' into 'master'"

See merge request !167
parents aefafab4 69752dd9
No related branches found
No related tags found
1 merge request!167Revert "Merge branch 'UFZ_test_deploy' into 'master'"
......@@ -26,7 +26,7 @@
# implied. See the Licence for the specific language governing
# permissions and limitations under the Licence.
FROM node:16.0.0-buster
FROM node:16.0.0-buster as js-builder
# First the urls for sms backend and cv backend
ARG SMS_BACKEND_URL_ARG
......@@ -59,3 +59,19 @@ COPY . /smsfrontend
WORKDIR /smsfrontend
RUN npm ci
RUN npm run build
FROM nginx:alpine as webserver
ARG BUILD_DATE
ARG VCS_REF
LABEL maintainer="Martin Abbrent <martin.abbrent@ufz.de>" \
org.opencontainers.image.title="Sensor management frontend" \
org.opencontainers.image.authors=" \
Marc Hanisch <marc.hanisch@gfz-potsdam.de> \
Nils Brinckmann <nils.brinckmann@gfz-potsdam.de> \
Kotyba Alhaj Taha <kotyba.alhaj-taha@ufz.de>" \
org.opencontainers.image.revision=$VCS_REF \
org.opencontainers.image.created=$BUILD_DATE
COPY --from=js-builder /smsfrontend/dist/ /usr/share/nginx/html/rdm/svm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment