Move static files to assets directory

This commit creates a new directory for static files, and moves
static files to assets directory that were previously in the
scripts directory.
This commit is contained in:
Hayley Swimelar 2019-11-21 09:51:13 -08:00
parent 7ea0dd0be2
commit 6d66271624
4 changed files with 2 additions and 2 deletions

View file

@ -2,4 +2,4 @@ FROM golangci/golangci-lint:v1.21-alpine
# git must be installed for golangci-lint's --new-from-rev flag to work. # git must be installed for golangci-lint's --new-from-rev flag to work.
RUN apk --no-cache add git RUN apk --no-cache add git
# Include a default .golangci.yml # Include a default .golangci.yml
COPY /scripts/.golangci.yml /golangci/.golangci.yml COPY /assets/.golangci.yml /golangci/.golangci.yml

View file

@ -1,3 +1,3 @@
FROM sitespeedio/sitespeed.io FROM sitespeedio/sitespeed.io
COPY /scripts/gitlab.txt $HOME/sitespeed.io/gitlab.txt COPY /assets/gitlab.txt $HOME/sitespeed.io/gitlab.txt