You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
841 B
Docker

# Build frontend dist.
FROM node:18-alpine AS frontend
WORKDIR /frontend-build
COPY . .
WORKDIR /frontend-build/frontend/web
RUN corepack enable && pnpm i --frozen-lockfile
RUN pnpm build
# Build backend exec file.
FROM golang:1.22-alpine AS backend
WORKDIR /backend-build
COPY . .
RUN CGO_ENABLED=0 go build -o slash ./bin/slash/main.go
# Make workspace with above generated files.
FROM alpine:latest AS monolithic
WORKDIR /usr/local/slash
RUN apk add --no-cache tzdata
ENV TZ="UTC"
COPY --from=frontend /frontend-build/frontend/web/dist /usr/local/slash/dist
COPY --from=backend /backend-build/slash /usr/local/slash/
EXPOSE 5231
# Directory to store the data, which can be referenced as the mounting point.
RUN mkdir -p /var/opt/slash
VOLUME /var/opt/slash
ENV SLASH_MODE="prod"
ENV SLASH_PORT="5231"
ENTRYPOINT ["./slash"]