Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20 as build
FROM node:22 as build

# Check the versions
RUN node --version && \
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 as build
FROM ubuntu:24.04 as build

MAINTAINER SDF Ops Team <ops@stellar.org>

Expand Down
4 changes: 2 additions & 2 deletions ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 as build
FROM ubuntu:24.04 as build

MAINTAINER SDF Ops Team <ops@stellar.org>

Expand Down Expand Up @@ -28,7 +28,7 @@ COPY ./ui /app/ui/
RUN yarn install
RUN yarn workspace ui build

FROM nginx:1.17
FROM nginx:1.27

COPY --from=build /app/ui/build/ /usr/share/nginx/html/
COPY --from=build /app/ui/nginx.conf /etc/nginx/conf.d/default.conf