Sign inSign up

marionebl/node-cubicle

By marionebl

Updated over 7 years ago

Image
0

243

marionebl/node-cubicle repository overview

node-cubicle

Base image for turn-key Node.js development environments

Getting started

Use this image as base image for project-specific cubicles

# Dockerfile
FROM marionebl/node-cubicle

WORKDIR /src
ADD . ./
RUN yarn install
RUN yarn build
# docker-compose.yml
version: '3'
services:
  cubicle:
    build: .
    image: marionebl/patternplate-cubicle
    ports:
      - '8443:8443'
    volumes:
      - ".:/src/"
    command: code-server --allow-http --no-auth

Examples

Tag summary

Content type

Image

Digest

Size

452.1 MB

Last updated

over 7 years ago

docker pull marionebl/node-cubicle