diff options
author | dev-nicolaos <contact@nicolaos.dev> | 2023-07-23 17:12:42 -0700 |
---|---|---|
committer | dev-nicolaos <contact@nicolaos.dev> | 2023-07-23 17:12:42 -0700 |
commit | cf6b87a3a663c4941c0d7c7ee595af743a4f2fa2 (patch) | |
tree | bd449710b28486b44eccdb112e18195e8e534bf6 | |
parent | cd53861e2823ca692931894ba5a89d460bc326c8 (diff) |
fix: only one CMD per 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 |