Skip to content

Commit c0b2bcb

Browse files
committed
docker fixes
1 parent ff362bf commit c0b2bcb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:alpine:latest as build
1+
FROM rust:1.88.0-alpine3.22 as build
22

33
ENV RUSTFLAGS="-C target-feature=-crt-static"
44
ENV RUN_MODE="build"
@@ -46,7 +46,7 @@ WORKDIR /srv/deeplynx/server
4646
RUN yarn install;
4747
RUN yarn run build;
4848

49-
FROM node:alpine:latest as production
49+
FROM node:20-alpine3.22 as production
5050
ENV DEVELOPMENT_MODE=false
5151

5252
RUN apk update && apk add --no-cache supervisor openssl

Dockerfile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:alpine:latest as build
1+
FROM rust:1.88.0-alpine3.22 as build
22

33
ENV RUSTFLAGS="-C target-feature=-crt-static"
44
ENV RUN_MODE="build"
@@ -52,7 +52,7 @@ WORKDIR /srv/deeplynx/server
5252
RUN yarn install;
5353
RUN yarn run build;
5454

55-
FROM node:alpine:latest as production
55+
FROM node:20-alpine3.22 as production
5656
ENV DEVELOPMENT_MODE=false
5757

5858
# Add missing packages

0 commit comments

Comments
 (0)