diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:20:19 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:20:19 +0300 |
| commit | 2adc69eab2e5c23e5f6ea41b590cf671e3f674f7 (patch) | |
| tree | 5d42b427e070a7e08d81200e017ec3d444a1e57f /Dockerfile | |
| parent | be7cd770b243095c6789216c0f3351d1d925f5ec (diff) | |
cleanup
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 25d7456..0000000 --- a/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM node:lts AS base -WORKDIR /app - -FROM base AS deps -COPY package*.json ./ -RUN npm install - -FROM base AS build -COPY --from=deps /app/node_modules ./node_modules -COPY . . -RUN npm run build - -FROM nginx:stable-alpine AS deploy -COPY --from=build /app/dist /usr/share/nginx/html -COPY ./nginx/nginx.conf /etc/nginx/nginx.conf - -EXPOSE 8080 |
