File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Needs to be run from the project root context e.g. `cd sourcify/ && docker build -f services/monitor/Dockerfile .`
2
- FROM node:22.5.1-bullseye as builder
2
+ FROM node:22.5.1-bookworm as builder
3
3
RUN mkdir -p /home/app
4
4
WORKDIR /home/app
5
5
@@ -11,7 +11,7 @@ RUN npx lerna run build --scope sourcify-monitor
11
11
# #####################
12
12
# # Production image ##
13
13
# #####################
14
- FROM node:22.5.1-bullseye -slim as production
14
+ FROM node:22.5.1-bookworm -slim as production
15
15
16
16
RUN mkdir -p /home/app/services/monitor
17
17
Original file line number Diff line number Diff line change 1
1
# Needs to be run from the project root context e.g. `cd sourcify/ && docker build -f services/monitor/Dockerfile .`
2
2
3
3
# Builder image
4
- FROM node:22.5.1-bullseye as builder
4
+ FROM node:22.5.1-bookworm as builder
5
5
6
6
RUN mkdir -p /home/app
7
7
WORKDIR /home/app
@@ -15,7 +15,7 @@ RUN npx lerna run build --scope sourcify-server
15
15
# #####################
16
16
# # Production image ##
17
17
# #####################
18
- FROM node:22.5.1-bullseye -slim as production
18
+ FROM node:22.5.1-bookworm -slim as production
19
19
20
20
RUN mkdir -p /home/app/services/server
21
21
Original file line number Diff line number Diff line change 5
5
# Assuming server is running on port 5555
6
6
# Run with: docker run -it -p 9229:9229 -p 5555:5555 --volume /path/to/local/sourcify/git/repo:/home/app sourcify-server-debug
7
7
# Finally run "Docker: Attach to Server" in VSCode debugger
8
- FROM node:22.5.1-bullseye
8
+ FROM node:22.5.1-bookworm
9
9
WORKDIR /home/app/services/server
10
10
11
11
CMD ["node", "--inspect=0.0.0.0:9229", "./dist/server/cli.js"]
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
17
17
18
18
# Needed to separate the migration because node must have PID 1 in service server
19
19
run-migrations :
20
- image : node:22.5.1-bullseye -slim
20
+ image : node:22.5.1-bookworm -slim
21
21
volumes :
22
22
- ../database:/home/app/services/database
23
23
environment :
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ services:
19
19
20
20
# Needed to separate the migration because node must have PID 1 in service server
21
21
run-migrations :
22
- image : node:22.5.1-bullseye -slim
22
+ image : node:22.5.1-bookworm -slim
23
23
volumes :
24
24
- ../database:/home/app/services/database
25
25
environment :
You can’t perform that action at this time.
0 commit comments