memobuild 0.2.0

A high-performance incremental build system with smart caching and OCI image support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Sample Dockerfile for MemoBuild testing
FROM node:18-alpine

WORKDIR /app

COPY package.json /app/

RUN npm install

COPY src /app/src

RUN npm run build

ENV NODE_ENV=production

EXPOSE 3000

CMD ["node", "dist/index.js"]