adding local docker compose with local postgres

This commit is contained in:
webcoderz
2024-03-28 11:15:46 -04:00
parent 7189f13263
commit a56ef1b06f
5 changed files with 103 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:21-bullseye AS comfy_deploy
RUN npm install -g bun
COPY ./web /web
WORKDIR /web
RUN cp .env.local.example .env.local
RUN bun i
ENTRYPOINT [ "bun", "dev" ]