1
0
Fork 0
mirror of https://github.com/TheTaz25/denis.ergin.git synced 2025-07-07 06:08:53 +00:00

build: update dependencies

This commit is contained in:
Denis Ergin 2024-09-17 17:42:50 +02:00
parent bc86ed1584
commit 9d54629dc5
4 changed files with 924 additions and 802 deletions

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
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 --mount=type=cache,id=pnpm,target=/pnpm/store 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 8080