mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 21:46:19 +00:00
35 lines
812 B
Docker
35 lines
812 B
Docker
# Build frontend dist.
|
|
FROM node:18.12.1-alpine3.16 AS frontend
|
|
WORKDIR /frontend-build
|
|
|
|
COPY ./web/package.json ./web/pnpm-lock.yaml ./
|
|
|
|
RUN corepack enable && pnpm i --frozen-lockfile
|
|
|
|
COPY ./web/ .
|
|
|
|
RUN pnpm build
|
|
|
|
# Build backend exec file.
|
|
FROM golang:1.19.3-alpine3.16 AS backend
|
|
WORKDIR /backend-build
|
|
|
|
COPY . .
|
|
COPY --from=frontend /frontend-build/dist ./server/dist
|
|
|
|
RUN go build -o shortify ./cmd/shortify/main.go
|
|
|
|
# Make workspace with above generated files.
|
|
FROM alpine:3.16 AS monolithic
|
|
WORKDIR /usr/local/shortify
|
|
|
|
RUN apk add --no-cache tzdata
|
|
ENV TZ="UTC"
|
|
|
|
COPY --from=backend /backend-build/shortify /usr/local/shortify/
|
|
|
|
# Directory to store the data, which can be referenced as the mounting point.
|
|
RUN mkdir -p /var/opt/shortify
|
|
|
|
ENTRYPOINT ["./shortify", "--mode", "prod", "--port", "5231"]
|