11 lines
486 B
Docker
11 lines
486 B
Docker
|
ARG REPO_LOCATION
|
||
|
# ARG BASE_VERSION
|
||
|
|
||
|
# NOTE: This might note be what's required - if possible we might only need the Node.js binary.
|
||
|
# Perhaps we could have 2 different images: minideb-node and node-min?
|
||
|
# ANOTHER NOTE: We probably don't need NPM - even in the minideb-node Docker image, as we should be able to npm install outside the container and import it in?
|
||
|
FROM ${REPO_LOCATION}minideb
|
||
|
# FROM ${REPO_LOCATION}minideb:${BASE_VERSION}
|
||
|
|
||
|
RUN install_packages libatomic1 nodejs-sbrl
|