Skip to content
Open
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
6 changes: 3 additions & 3 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# However, the resulting image size is very large (~1.25GB).
#
# Useful for development, but don't ship it. Use 'Dockerfile' instead.
FROM node:18.16.1
FROM node:20.19.3

# Link this Dockerfile to the image in the GHCR
LABEL "org.opencontainers.image.source"="https://github.com/liberdus/server"
Expand All @@ -21,8 +21,8 @@ COPY . .
RUN apt-get update && apt-get install -y \
build-essential \
curl
RUN curl https://sh.rustup.rs -sSf | bash -s -- -RUN curl https://sh.rustup.rs -sSf | bash -s -- -y \
--default-toolchain 1.74.1y
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y \
--default-toolchain 1.82
ENV PATH="/root/.cargo/bin:${PATH}"

# Install node_modules
Expand Down