diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db228de6..9205daa1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,14 +27,6 @@ You can also use these more granular scripts: - `yarn compat`: check that APIs do not introduce breaking changes - `yarn lint`: run eslint and API compatibility -### Docker Build - -If you want to use docker to build, test and package your work use the following: - -```shell script -docker build -t constructs . -``` - ### Using a local version of this library in a dependency If you're doing changes to this library, diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d41c92d4..00000000 --- a/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM jsii/superchain:1-bookworm-slim - -WORKDIR /app - -ARG BUILD_ARGS - -COPY . . - -RUN yarn install && yarn build ${BUILD_ARGS} -