소스 검색

Merge pull request #828 from d4rklynk/dockerfile

Dockerfile
pull/843/head
Matt Baer 5 달 전
committed by GitHub
부모
커밋
b85afa1ea6
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일18개의 추가작업 그리고 10개의 파일을 삭제
  1. +18
    -10
      Dockerfile

+ 18
- 10
Dockerfile 파일 보기

@@ -1,13 +1,15 @@
# Build image # Build image
FROM golang:1.19-alpine as build
# SHA256 of golang:1.21-alpine3.18 linux/amd64
FROM golang@sha256:f475434ea2047a83e9ba02a1da8efc250fa6b2ed0e9e8e4eb8c5322ea6997795 as build


LABEL org.opencontainers.image.source=https://github.com/writefreely/writefreely
LABEL org.opencontainers.image.source="https://github.com/writefreely/writefreely"
LABEL org.opencontainers.image.description="WriteFreely is a clean, minimalist publishing platform made for writers. Start a blog, share knowledge within your organization, or build a community around the shared act of writing." LABEL org.opencontainers.image.description="WriteFreely is a clean, minimalist publishing platform made for writers. Start a blog, share knowledge within your organization, or build a community around the shared act of writing."


RUN apk add --update nodejs npm make g++ git
RUN npm install -g less less-plugin-clean-css
RUN apk -U upgrade \
&& apk add --no-cache nodejs npm make g++ git \
&& npm install -g less less-plugin-clean-css \
&& mkdir -p /go/src/github.com/writefreely/writefreely


RUN mkdir -p /go/src/github.com/writefreely/writefreely
WORKDIR /go/src/github.com/writefreely/writefreely WORKDIR /go/src/github.com/writefreely/writefreely


COPY . . COPY . .
@@ -18,9 +20,9 @@ ENV GO111MODULE=on
ENV NODE_OPTIONS=--openssl-legacy-provider ENV NODE_OPTIONS=--openssl-legacy-provider


RUN make build \ RUN make build \
&& make ui
RUN mkdir /stage && \
cp -R /go/bin \
&& make ui \
&& mkdir /stage \
&& cp -R /go/bin \
/go/src/github.com/writefreely/writefreely/templates \ /go/src/github.com/writefreely/writefreely/templates \
/go/src/github.com/writefreely/writefreely/static \ /go/src/github.com/writefreely/writefreely/static \
/go/src/github.com/writefreely/writefreely/pages \ /go/src/github.com/writefreely/writefreely/pages \
@@ -29,9 +31,12 @@ RUN mkdir /stage && \
/stage /stage


# Final image # Final image
FROM alpine:3
# SHA256 of alpine:3.18.4 linux/amd64
FROM alpine@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86

RUN apk -U upgrade \
&& apk add --no-cache openssl ca-certificates


RUN apk add --no-cache openssl ca-certificates
COPY --from=build --chown=daemon:daemon /stage /go COPY --from=build --chown=daemon:daemon /stage /go


WORKDIR /go WORKDIR /go
@@ -40,3 +45,6 @@ EXPOSE 8080
USER daemon USER daemon


ENTRYPOINT ["cmd/writefreely/writefreely"] ENTRYPOINT ["cmd/writefreely/writefreely"]

HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
CMD curl -fSs http://localhost:8080/ || exit 1

불러오는 중...
취소
저장