updating infrastructure

This commit is contained in:
2025-11-23 10:24:57 -06:00
parent 2a596b29f7
commit 23b0361718
26 changed files with 119 additions and 504 deletions

View File

@@ -1,46 +1,18 @@
# FROM --platform=linux/amd64 node:18-alpine AS base
# ENV PNPM_HOME="/pnpm"
# ENV PATH="$PNPM_HOME:$PATH"
# RUN corepack enable
FROM --platform=linux/amd64 node:22-slim
# FROM base AS api
# COPY /api/dist /app/dist
# COPY /api/node_modules /app/node_modules
# WORKDIR /app
# EXPOSE 3000
# # CMD ["node", "dist/main.js"]
# ENTRYPOINT ["tail", "-f", "/dev/null"]
# FROM base AS app
# COPY /app/dist /app/dist
# WORKDIR /app
# RUN npm i -g serve
# EXPOSE 8080
# CMD [ "serve", "-s", "/dist", "-p", "8080" ]
FROM --platform=linux/amd64 node:22-slim AS base
FROM base AS api
COPY ./api/entrypoint.sh ./entrypoint.sh
RUN chmod +x entrypoint.sh
WORKDIR app
COPY ./api/dist ./api/dist
COPY ./api/package.json package-lock.json ./api
COPY ./client/dist ./client/dist
WORKDIR api
COPY ./api/dist ./dist
COPY ./api/package.json package-lock.json .
RUN npm ci
WORKDIR /
COPY ./api/entrypoint.sh ./entrypoint.sh
RUN chmod +x entrypoint.sh
EXPOSE 3000
ENTRYPOINT ["/entrypoint.sh"]
# ENTRYPOINT ["tail", "-f", "/dev/null"]
FROM base AS app
WORKDIR app
COPY ./app/dist ./dist
RUN npm i -g serve
EXPOSE 8080
CMD [ "serve", "-s", "dist", "-p", "8080" ]
# ENTRYPOINT ["tail", "-f", "/dev/null"]