mirror of
https://github.com/janoside/btc-rpc-explorer.git
synced 2026-08-13 12:33:13 +02:00
Updates node.js to the current active LTS version. Version 16 seems unmaintained at this time. See https://nodejs.org/en/about/previous-releases
11 lines
192 B
Docker
11 lines
192 B
Docker
FROM node:20 as builder
|
|
WORKDIR /workspace
|
|
COPY . .
|
|
RUN npm install
|
|
|
|
FROM node:20-alpine
|
|
WORKDIR /workspace
|
|
COPY --from=builder /workspace .
|
|
RUN apk --update add git
|
|
CMD npm start
|
|
EXPOSE 3002
|