Add Dockerfile.dev

This commit is contained in:
Eric Bailey
2025-01-09 11:16:00 -06:00
parent 7afefccdd0
commit 7aa97e244c
+16
View File
@@ -0,0 +1,16 @@
FROM node:22.13-alpine3.20
WORKDIR /app
COPY package.json /app/package.json
COPY yarn.lock /app/yarn.lock
COPY /patches /app/patches
RUN pwd
RUN cd /app
RUN yarn
COPY . /app
CMD ["pwd"]
CMD ["yarn", "web"]