feat(docker): dockerize

This commit is contained in:
Pihkaal
2024-09-12 18:42:32 +02:00
parent e8a57347b2
commit b70dcce9ed
3 changed files with 29 additions and 0 deletions

2
.dockerignore Normal file
View File

@@ -0,0 +1,2 @@
node_modules
dist

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM node:20-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
COPY . /app
WORKDIR /app
FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

5
docker-compose.yaml Normal file
View File

@@ -0,0 +1,5 @@
services:
app:
build: .
ports:
- "3001:80"