diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c9c2052..2efd5319 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,9 @@ on: jobs: build: runs-on: ubuntu-latest + permissions: + contents: read + packages: write steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 diff --git a/Dockerfile b/Dockerfile index 83de69ed..8e0a62cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,4 @@ COPY package.json package-lock.json ./ RUN npm install --production COPY . . -CMD cd /app && npm start \ No newline at end of file +CMD ["npm", "start"] \ No newline at end of file