restructring

This commit is contained in:
sriram veeraghanta
2023-08-22 13:00:23 +05:30
parent b406a70e72
commit 3ce0aa8ebc
878 changed files with 3 additions and 95 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:18-alpine
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
COPY . .
RUN yarn global add turbo
RUN yarn install
EXPOSE 3000
CMD ["yarn","dev"]