mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
8 lines
170 B
Docker
8 lines
170 B
Docker
FROM node:alpine
|
|
WORKDIR /usr/src/openapi
|
|
COPY . /usr/src/openapi
|
|
RUN npm install
|
|
RUN npm run release
|
|
ENTRYPOINT [ "node", "/usr/src/openapi/bin/index.js" ]
|
|
CMD "--help"
|