mirror of
https://github.com/TheTaz25/denis.ergin.git
synced 2025-07-06 13:18:49 +00:00
17 lines
312 B
Docker
17 lines
312 B
Docker
FROM node:18-alpine AS base
|
|
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
RUN corepack enable
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
FROM base AS build
|
|
RUN pnpm install --frozen-lockfile
|
|
RUN pnpm build
|
|
|
|
FROM nginx:1.27.1
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 80
|
|
|