From 2f37d93dcfced3fc9063bc1b13c5d666027a51ef Mon Sep 17 00:00:00 2001 From: Anna Hoege Date: Thu, 26 Oct 2023 19:01:13 +0200 Subject: [PATCH] test: updated docker file --- .github/workflows/on-push.yml | 2 +- Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 4b94cbd2..4f2fdbfd 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -30,7 +30,7 @@ jobs: deploy_docker_image: name: Deploy Docker Image needs: [ validations ] - if: ${{ !(contains(github.event.head_commit.message, 'chore') || contains(github.event.head_commit.message, 'ci')) }} + # if: ${{ !(contains(github.event.head_commit.message, 'chore') || contains(github.event.head_commit.message, 'ci')) }} uses: ./.github/workflows/docker-image.yml with: node_version: 18 diff --git a/Dockerfile b/Dockerfile index a1e84e60..e4153825 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM node:18-alpine3.18 COPY packages/core-components/docs-build /tmp -COPY packages/core-components/dist /tmp/design-system/dist RUN echo "Ok" > /tmp/design-system/health.html CMD ["npx", "http-serve", "/tmp", "-p", "80", "-d", "false", "--cors"]