Remove themes from this repo

This commit is contained in:
2022-11-06 18:44:29 +01:00
parent 34b46655bd
commit dc53589e7d
147 changed files with 42 additions and 22310 deletions

View File

@@ -10,7 +10,8 @@ WORKDIR /
# Create a netrc file using the credentials specified using --build-arg
RUN printf "machine git.coopgo.io\n\
login ${ACCESS_TOKEN_USR}\n\
password ${ACCESS_TOKEN_PWD}\n"\
password ${ACCESS_TOKEN_PWD}\n\
\n"\
>> ~/.netrc
RUN chmod 600 ~/.netrc
@@ -21,6 +22,7 @@ RUN go mod download && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /server
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /themes/ /themes/
COPY --from=builder /server /
EXPOSE 8080