FROM node:18-alpine # needed to compile translations RUN apk add --no-cache jq bash coreutils python3 EXPOSE 8080 WORKDIR /app/ # Create node_modules directory to prevent it from being hidden by volume mounts RUN mkdir -p node_modules # Copy entry script COPY scripts/ ./scripts/ ADD package.json yarn.lock ./ RUN apk add git RUN yarn install COPY . . CMD ["yarn", "serve"]