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