mirror of
https://github.com/defnull/fediwall.git
synced 2024-11-21 15:13:20 +01:00
11 lines
188 B
Docker
11 lines
188 B
Docker
|
FROM node:18-alpine as BUILD
|
||
|
|
||
|
WORKDIR /build
|
||
|
COPY package.json package-lock.json ./
|
||
|
RUN npm ci
|
||
|
COPY ./ ./
|
||
|
RUN npm run build
|
||
|
|
||
|
FROM nginx
|
||
|
COPY --from=BUILD /build/dist /usr/share/nginx/html
|