diff options
author | Raphael <mail@raphaelkabo.com> | 2023-09-28 14:23:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 14:23:29 +0100 |
commit | ec206eb1eb13535d95e56e477ab716889801d491 (patch) | |
tree | bd449710b28486b44eccdb112e18195e8e534bf6 /Dockerfile | |
parent | cd53861e2823ca692931894ba5a89d460bc326c8 (diff) | |
parent | cf6b87a3a663c4941c0d7c7ee595af743a4f2fa2 (diff) |
Merge pull request #106 from dev-nicolaos/dockerfile-fix
fix: only one CMD per Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,5 +6,5 @@ RUN npm install -g pnpm RUN pnpm install COPY . /app/ RUN cp config/config.example.toml config/config.toml -CMD pnpm run build +RUN pnpm run build CMD pnpm run start |