Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created March 26, 2019 10:58
Show Gist options
  • Save mhemrg/46826bbca3ae11f14f41b5e767593ea6 to your computer and use it in GitHub Desktop.
Save mhemrg/46826bbca3ae11f14f41b5e767593ea6 to your computer and use it in GitHub Desktop.
Liara - Node 10
FROM node:10
WORKDIR /app
COPY . .
RUN npm install && npm run --if-present build
CMD npm start
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment