This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2025-05-14 19:50:09 -04:00

11 lines
206 B
Docker

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" ]