Skip to content

Instantly share code, notes, and snippets.

@Rolilink
Created April 26, 2020 22:24
Show Gist options
  • Save Rolilink/594222367817fa089d4c379d2c815fbb to your computer and use it in GitHub Desktop.
Save Rolilink/594222367817fa089d4c379d2c815fbb to your computer and use it in GitHub Desktop.
CRAPP
FROM node:erbium
WORKDIR /www
ENV RUNTIME dev
EXPOSE 3000
# Install app dependencies
COPY package.json ./
COPY yarn.lock ./
RUN yarn
# Bundle app source
COPY . .
CMD yarn start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment