Skip to content

Base image for turn-key Node.js development environments

Notifications You must be signed in to change notification settings

marionebl/node-cubicle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

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

About

Base image for turn-key Node.js development environments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published