You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
803 B
26 lines
803 B
########
|
|
FROM golang:1.17-bullseye as backendbuild
|
|
|
|
WORKDIR /go/src/github.com/analogj/scrutiny
|
|
|
|
COPY . /go/src/github.com/analogj/scrutiny
|
|
|
|
RUN go mod vendor && \
|
|
go build -ldflags '-w -extldflags "-static"' -o scrutiny webapp/backend/cmd/scrutiny/scrutiny.go
|
|
|
|
########
|
|
FROM debian:bullseye-slim as runtime
|
|
EXPOSE 8080
|
|
WORKDIR /opt/scrutiny
|
|
ENV PATH="/opt/scrutiny/bin:${PATH}"
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates curl tzdata && update-ca-certificates
|
|
|
|
COPY --from=backendbuild /go/src/github.com/analogj/scrutiny/scrutiny /opt/scrutiny/bin/
|
|
COPY dist /opt/scrutiny/web
|
|
RUN chmod +x /opt/scrutiny/bin/scrutiny && \
|
|
mkdir -p /opt/scrutiny/web && \
|
|
mkdir -p /opt/scrutiny/config && \
|
|
chmod -R ugo+rwx /opt/scrutiny/config
|
|
CMD ["/opt/scrutiny/bin/scrutiny", "start"]
|