plane/apps/app/Dockerfile.dev
2023-06-07 12:30:42 +05:30

12 lines
178 B
Docker

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"]