Co-authored-by: Nicklas Wallgren <nicklas.wallgren@folksam.se> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
22 lines
492 B
Docker
22 lines
492 B
Docker
# Initial stage, just build the app
|
|
FROM node:lts as builder
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN npm i -g pnpm
|
|
|
|
COPY . .
|
|
RUN pnpm install --force --frozen-lockfile
|
|
|
|
WORKDIR /usr/src/app/packages/hoppscotch-sh-admin/
|
|
RUN pnpm run build
|
|
|
|
|
|
# Final stage, take the build artifacts and package it into a static Caddy server
|
|
FROM caddy:2-alpine
|
|
WORKDIR /site
|
|
COPY packages/hoppscotch-sh-admin/Caddyfile /etc/caddy/Caddyfile
|
|
COPY --from=builder /usr/src/app/packages/hoppscotch-sh-admin/dist/ .
|
|
|
|
EXPOSE 8080
|