11 lines
124 B
Docker
11 lines
124 B
Docker
FROM jsii/superchain:1-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
ARG BUILD_ARGS
|
|
|
|
COPY . .
|
|
|
|
RUN yarn install && yarn build ${BUILD_ARGS}
|
|
|