diff options
author | Raphael <mail@raphaelkabo.com> | 2023-05-25 09:16:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 09:16:09 +0100 |
commit | 6368de679b391d6c6d9d404e40d88b537c88f317 (patch) | |
tree | 6cc6db9bd4e9b181fa7f3b6c161463d112819c88 | |
parent | 2426cea0ef081c36cce4f826acc392198910d791 (diff) | |
parent | b42e909cce6222ed48d3cb4cadd2d53ad5c41ab6 (diff) |
Merge pull request #99 from kohbo/docker
Fixed Dockerfile to be compatible with config structure.
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,6 @@ ADD package.json pnpm-lock.yaml /app/ RUN npm install -g pnpm RUN pnpm install COPY . /app/ -RUN cp src/config/api-example.js src/config/api.js && cp src/config/domain-example.js src/config/domain.js && cp src/config/database-docker.js src/config/database.js +RUN cp config/config.example.toml config/config.toml CMD pnpm run build CMD pnpm run start |