Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
Update Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffesquivels committed Sep 22, 2023
1 parent fb3238c commit fad56cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/deb.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG DATA_PATH=/nimiq

#---------------------------- BUILD NIMIQ - BUILD ------------------------------
FROM node:14-buster as builder
FROM node:18-bookworm as builder
# Get repo key and install it
RUN wget -qO - https://www.nimiq.com/nimiq-signing-key.pub | apt-key add -

#---------------------------- BUILD NIMIQ - NODE -------------------------------
FROM node:14-buster-slim
FROM node:18-bookworm-slim

# Install the repo
COPY --from=builder /etc/apt/trusted.gpg /etc/apt/
Expand Down
4 changes: 2 additions & 2 deletions docker/git.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG DATA_PATH=/nimiq
ARG PACKAGING=1

#---------------------------- BUILD NIMIQ - BASE -------------------------------
FROM node:14-buster as base
FROM node:18-bookworm as base

# Install build dependencies
RUN apt-get update \
Expand Down Expand Up @@ -43,7 +43,7 @@ RUN --mount=type=cache,sharing=locked,target=/usr/local/share/.cache/yarn \
yarn install --frozen-lockfile --production

#---------------------------- BUILD NIMIQ - NODE -------------------------------
FROM node:14-buster-slim
FROM node:18-bookworm-slim

# Install tini - a tiny init for containers
RUN apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions docker/local.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG DATA_PATH=/nimiq
ARG PACKAGING=1

#---------------------------- BUILD NIMIQ - BASE -------------------------------
FROM node:14-buster as base
FROM node:18-bookworm as base

# Install build dependencies
RUN apt-get update \
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN --mount=type=cache,sharing=locked,target=/usr/local/share/.cache/yarn \
yarn install --frozen-lockfile --production

#---------------------------- BUILD NIMIQ - NODE -------------------------------
FROM node:14-buster-slim
FROM node:18-bookworm-slim

# Install tini - a tiny init for containers
RUN apt-get update \
Expand Down

0 comments on commit fad56cd

Please sign in to comment.