diff options
author | Kohbo <kohbosan@gmail.com> | 2023-05-24 16:42:46 -0600 |
---|---|---|
committer | Kohbo <kohbosan@gmail.com> | 2023-05-24 16:42:46 -0600 |
commit | b42e909cce6222ed48d3cb4cadd2d53ad5c41ab6 (patch) | |
tree | 6cc6db9bd4e9b181fa7f3b6c161463d112819c88 /Dockerfile | |
parent | 2426cea0ef081c36cce4f826acc392198910d791 (diff) |
Fixed Dockerfile to be compatible with config structure.
Diffstat (limited to 'Dockerfile')
-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 |