diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index f7a0b4d..c78bccd 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 - name: Install dependencies - run: npm install + run: npm ci deploy: runs-on: ubuntu-latest diff --git a/Dockerfile b/Dockerfile index e2a483d..ae791ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,4 @@ FROM node:alpine EXPOSE 4000 COPY . . RUN npm install -CMD ["node", "./index.mjs"] \ No newline at end of file +CMD npm start \ No newline at end of file