Minimize js and css files in docker build
This commit is contained in:
@@ -5,11 +5,16 @@ WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
RUN npm install uglifycss -g
|
||||
RUN npm install uglify-js -g
|
||||
|
||||
COPY Webservice Webservice
|
||||
COPY public public
|
||||
COPY data data
|
||||
COPY minimize.sh minimize.sh
|
||||
|
||||
RUN chmod +x minimize.sh
|
||||
RUN ./minimize.sh
|
||||
RUN sed -i "s/DATE_TO_BE_REPLACED/$(date +%s)/" public/index.html
|
||||
RUN sed -i "s/COMMIT_TO_BE_REPLACED/GitHub: $(git ls-remote https://github.com/H4CK3R-01/Projektmanagement-Game refs/heads/main | awk '{print $1;}' | cut -c1-7)/" public/index.html
|
||||
RUN sed -i "s/COMMIT_LINK_TO_BE_REPLACED/https\:\/\/github.com\/H4CK3R-01\/Projektmanagement-Game\/commit\/$(git ls-remote https://github.com/H4CK3R-01/Projektmanagement-Game refs/heads/main | awk '{print $1;}')/" public/index.html
|
||||
|
Reference in New Issue
Block a user