mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
14 lines
232 B
Docker
14 lines
232 B
Docker
FROM moleculacorp/nodejs:latest as build
|
|
|
|
WORKDIR /lattice
|
|
|
|
COPY package.json ./
|
|
COPY yarn.lock ./
|
|
RUN yarn install
|
|
|
|
COPY . ./
|
|
RUN yarn build
|
|
|
|
FROM caddy
|
|
COPY --from=build /lattice/build /lattice
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|