plane/app/Dockerfile.dev
sriram veeraghanta 1538b99a28 removing trubo
2023-04-21 19:30:36 -04:00

14 lines
151 B
Docker

FROM node:18-alpine
RUN apk add --no-cache libc6-compat
RUN apk update
# Set working directory
WORKDIR /app
COPY . .
RUN yarn install
EXPOSE 3000