Rename, update var in dev

This commit is contained in:
Eric Bailey
2025-01-22 17:50:54 -06:00
parent 9533aea792
commit 0fc2668b5a
2 changed files with 1 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM node:22.13-alpine3.20
WORKDIR /app
COPY package.json /app/package.json
COPY yarn.lock /app/yarn.lock
COPY /patches /app/patches
COPY /lingui.config.js /app/lingui.config.js
COPY /src/locale/locales /app/src/locale/locales
RUN pwd
RUN cd /app
RUN yarn
COPY . /app
ENV EXPO_PUBLIC_APPVIEW_PROXY_DID=${EXPO_PUBLIC_APPVIEW_PROXY_DID}
CMD ["yarn", "web"]