diff --git a/.gitignore b/.gitignore index 42923f5d6..e8a5c5fc4 100755 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ src/node/index.mjs **/*.DS_Store tests/browser/output/* .node-version +Dockerfile +build.sh diff --git a/Dockerfile b/Dockerfile index be4c8bada..64339fa8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,3 @@ -FROM node:18-alpine AS build - -COPY . . -RUN npm ci -RUN npm run build - -FROM nginx:1.25-alpine3.18 AS cyberchef - -COPY --from=build ./build/prod /usr/share/nginx/html/ +FROM nginx:latest +LABEL maintainer='David Goldenberg' +COPY ../build/prod /usr/share/nginx/html \ No newline at end of file