Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 0b9dbaa

Browse files
committed
code service Name change
1 parent 6f00eb5 commit 0b9dbaa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ jobs:
4949
environment:
5050
DEPLOY_ENV: "DEV"
5151
LOGICAL_ENV: "dev"
52-
APPNAME: "autopilot-processor"
52+
APPNAME: "scheduler-processor"
5353
steps: *builddeploy_steps
5454

5555
"build-prod":
5656
<<: *defaults
5757
environment:
5858
DEPLOY_ENV: "PROD"
5959
LOGICAL_ENV: "prod"
60-
APPNAME: "autopilot-processor"
60+
APPNAME: "scheduler-processor"
6161
steps: *builddeploy_steps
6262

6363
workflows:

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
FROM node:12.16.3
33

44
# Copy the current directory into the Docker image
5-
COPY . /autopilot-processor
5+
COPY . /scheduler-processor
66

77
# Set working directory for future use
8-
WORKDIR /autopilot-processor
8+
WORKDIR /scheduler-processor
99

1010
# Install the dependencies from package.json
1111
RUN npm install

docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
3-
autopilot-processor:
4-
image: autopilot-processor:latest
3+
scheduler-processor:
4+
image: scheduler-processor:latest
55
build:
66
context: ../
77
dockerfile: docker/Dockerfile

0 commit comments

Comments
 (0)