Automated version generation (ticket #36)

Co-authored-by: Adam Bem <adam.bem@zoho.eu>
Reviewed-on: R11/release11-tools-web#80
This commit is contained in:
2023-02-28 11:45:39 +01:00
parent 3c927f91cf
commit f96f8270ce
6 changed files with 21 additions and 13 deletions

View File

@@ -3,9 +3,13 @@ FROM nginx:stable-alpine
COPY ./tools/ /usr/share/nginx/html/tools/
COPY ./assets/ /usr/share/nginx/html/assets/
COPY ./index.html /usr/share/nginx/html
#COPY ./logo.png /usr/share/nginx/html
#COPY ./styles.css /usr/share/nginx/html
#COPY ./common.css /usr/share/nginx/html
#COPY ./favicon.ico /usr/share/nginx/html
RUN mkdir -p /scripts
COPY insert_version.sh /scripts/
WORKDIR /scripts
RUN chmod +x insert_version.sh
RUN ./insert_version.sh
EXPOSE 80