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:
parent
0a8b99a074
commit
c6e021d41f
7 changed files with 396 additions and 19 deletions
11
space/Dockerfile.dev
Normal file
11
space/Dockerfile.dev
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue