dev: Docker Compose for Local Dev Environment Setup (#2409)

* local dev environment setup

* api image fixes

* yaml changed to yml

* Readme & EnvSetup MD updates

* Update README.md
This commit is contained in:
Manish Gupta 2023-10-13 12:16:08 +05:30 committed by GitHub
parent 0a8b99a074
commit c6e021d41f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 396 additions and 19 deletions

11
space/Dockerfile.dev Normal file
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", "--filter=space"]