Add fullstack example

This commit is contained in:
Mike Conrad
2025-06-11 15:23:27 -04:00
parent 0313358d16
commit f98e05b677
28 changed files with 3181 additions and 0 deletions

View File

@ -0,0 +1,10 @@
FROM node:22-alpine AS base
WORKDIR /backend
COPY package.json .
RUN yarn install
COPY index.js .
FROM base AS develop
COPY --from=base /backend/ .
EXPOSE 3000
ENTRYPOINT [ "node", "--watch", "index.js" ]