Dont list hidden files and hopefully search files by ext only .md

This commit is contained in:
bel
2019-11-24 04:27:24 +00:00
parent e4632d36ba
commit 4e2b7b3c85
19 changed files with 13 additions and 6 deletions

8
Dockerfile Normal file → Executable file
View File

@@ -1,11 +1,8 @@
FROM frolvlad/alpine-glibc:alpine-3.9_glibc-2.29
RUN apk update && apk add --no-cache ca-certificates git
FROM golang:1.13-alpine as certs
RUN apk update && apk add --no-cache ca-certificates
FROM busybox:glibc
RUN mkdir -p /var/log
WORKDIR /main
COPY --from=certs /etc/ssl/certs /etc/ssl/certs
COPY . .
@@ -13,4 +10,3 @@ ENV GOPATH=""
ENV MNT="/mnt/"
ENTRYPOINT ["/main/exec-notes-server"]
CMD []