This commit is contained in:
MartinBraquet
2026-03-02 19:57:31 +01:00
parent 7a44f3d23c
commit 140ace55bf
3 changed files with 5 additions and 2 deletions

View File

@@ -14,6 +14,9 @@ RUN yarn install --frozen-lockfile --production && \
yarn cache clean --force && \
rm -rf /usr/local/share/.cache/yarn
# Show installed packages
RUN npm list || true
# Copy over typescript payload
COPY dist ./

View File

@@ -49,7 +49,7 @@ echo "🚀 Deploying ${SERVICE_NAME} to ${ENV} ($(date "+%Y-%m-%d %I:%M:%S %p"))
yarn build
gcloud auth print-access-token | docker login -u oauth2accesstoken --password-stdin us-west1-docker.pkg.dev
docker build . --tag ${IMAGE_URL} --platform linux/amd64
docker build . --tag ${IMAGE_URL} --platform linux/amd64 --progress=plain
echo "docker push ${IMAGE_URL}"
docker push ${IMAGE_URL}

View File

@@ -1,6 +1,6 @@
{
"name": "@compass/api",
"version": "1.21.1",
"version": "1.21.2",
"private": true,
"description": "Backend API endpoints",
"main": "src/serve.ts",