From 9a123eb59cd0885b8e91f9cbda1005bb1c167d8f Mon Sep 17 00:00:00 2001 From: "sourcegraph-commit-signing-app[bot]" <188111114+sourcegraph-commit-signing-app[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:40:55 +0000 Subject: [PATCH] remove Dockerfile --- Dockerfile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e72efd9..0000000 --- a/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -FROM drydock-prod.workiva.net/workiva/dart_build_image:4 -ARG NPM_TOKEN - -RUN apt-get update && apt-get install -y curl -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - -RUN apt-get update && apt-get install -y nodejs -RUN node --version -RUN npm --version - -WORKDIR /build/ -ADD . /build/ -RUN dart pub get - -RUN npm install -RUN mkdir /audit/ -ARG BUILD_ARTIFACTS_AUDIT=/audit/* - -RUN npm ls -s --json --depth=10 > /audit/npm.lock || [ $? -eq 1 ] || exit -FROM scratch