summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael <mail@raphaelkabo.com>2023-05-25 09:16:09 +0100
committerGitHub <noreply@github.com>2023-05-25 09:16:09 +0100
commit6368de679b391d6c6d9d404e40d88b537c88f317 (patch)
tree6cc6db9bd4e9b181fa7f3b6c161463d112819c88
parent2426cea0ef081c36cce4f826acc392198910d791 (diff)
parentb42e909cce6222ed48d3cb4cadd2d53ad5c41ab6 (diff)
Merge pull request #99 from kohbo/docker
Fixed Dockerfile to be compatible with config structure.
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index a11e337..88b33f3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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