Skip to content

Instantly share code, notes, and snippets.

# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs
defaults: &defaults
docker:
- image: chrisroane/frontline-docker-image:0.0.4
working_directory: ~/medstat
environment:
TZ: "/usr/share/zoneinfo/America/New_York"
version: 2
jobs:
# Set the base image
FROM ubuntu
# Set config variables.
ENV NVM_DIR /root/.nvm
ENV NODE_VERSION 6.1.0
# Replace shell with bash so we can source files.
RUN rm /bin/sh && ln -s /bin/bash /bin/sh