Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: docker support #131

Open
wants to merge 10 commits into
base: staging
Choose a base branch
from
Prev Previous commit
Next Next commit
fix(docker): Update to build out a production based build instead of …
…`dev`
  • Loading branch information
txj-xyz committed Feb 9, 2025
commit 03b14c6df3a44557f7bb9858117797a4e64f5c0b
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RUN corepack enable pnpm

# install deps
RUN pnpm install
RUN pnpm build

COPY . .

Expand All @@ -26,4 +27,4 @@ ENV REDIS_TOKEN=

EXPOSE 3000

CMD ["pnpm", "dev"]
CMD ["pnpm", "start"]