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.
36 lines
1.3 KiB
36 lines
1.3 KiB
# syntax=docker/dockerfile:1.4
|
|
########################################################################################################################
|
|
# Web Image
|
|
########################################################################################################################
|
|
|
|
######## Build the frontend
|
|
FROM --platform=${BUILDPLATFORM} node AS frontendbuild
|
|
WORKDIR /go/src/github.com/analogj/scrutiny
|
|
COPY --link . /go/src/github.com/analogj/scrutiny
|
|
|
|
RUN make binary-frontend
|
|
|
|
######## Build the backend
|
|
FROM golang:1.20-bullseye as backendbuild
|
|
|
|
WORKDIR /go/src/github.com/analogj/scrutiny
|
|
COPY --link . /go/src/github.com/analogj/scrutiny
|
|
|
|
RUN make binary-clean binary-all WEB_BINARY_NAME=scrutiny
|
|
|
|
|
|
######## Combine build artifacts in runtime image
|
|
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 --link --from=backendbuild --chmod=755 /go/src/github.com/analogj/scrutiny/scrutiny /opt/scrutiny/bin/
|
|
COPY --link --from=frontendbuild --chmod=644 /go/src/github.com/analogj/scrutiny/dist /opt/scrutiny/web
|
|
RUN mkdir -p /opt/scrutiny/web && \
|
|
mkdir -p /opt/scrutiny/config && \
|
|
chmod -R ugo+rwx /opt/scrutiny/config
|
|
CMD ["/opt/scrutiny/bin/scrutiny", "start"]
|