nodejs/Dockerfile
Petr "Stone" Hracek 15947cc35f Update Dockerfile repo and tests
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
2017-06-12 14:01:23 +02:00

22 lines
602 B
Docker

FROM baseruntime/baseruntime:latest
ENV NAME=nodejs \
VERSION=0 \
RELEASE=1 \
ARCH=x86_64
LABEL summary="Javascript runtime." \
name="$FGC/$NAME" \
version="$VERSION" \
release="$RELEASE.$DISTTAG" \
architecture="$ARCH" \
usage="docker run nodejs node" \
description="Node.js is a platform built on V8 JavaScript Engine for easily building fast, scalable network applications." \
io.k8s.description="Node.js is a platform built on V8 JavaScript Engine for easily building fast, scalable network applications."
RUN microdnf --nodocs install nodejs npm
EXPOSE 8080
CMD /bin/sh/