From 3c986fc7fab0c4be1b116420d15c380811209dbe Mon Sep 17 00:00:00 2001 From: Gavin McDonald Date: Mon, 21 Apr 2025 08:57:28 -0400 Subject: [PATCH] Docker tweaks --- Dockerfile | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 938f486..6ec3011 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-slim # Create app directory -WORKDIR /app +WORKDIR /tarokka # Copy and install dependencies COPY package*.json ./ diff --git a/package.json b/package.json index 0b25e93..081cbb4 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "dev": "nodemon", "build": "next build && tsc --project tsconfig.server.json", "start": "cross-env NODE_ENV=production TS_NODE_BASEURL=./build node -r tsconfig-paths/register build/server.js", - "deploy": "docker buildx build --platform linux/amd64 -t nasty.mcmorgans:5000/tarokka:latest --push ." + "deploy": "docker buildx build --platform linux/amd64 -t nasty.mcmorgans:5000/tarokka --push ." }, "dependencies": { "cross-env": "^7.0.3",