Skip to content

Instantly share code, notes, and snippets.

@t0yohei
Last active February 26, 2022 05:11
Show Gist options
  • Save t0yohei/ee5eead3d033a77f83d1efc97a6c4be9 to your computer and use it in GitHub Desktop.
Save t0yohei/ee5eead3d033a77f83d1efc97a6c4be9 to your computer and use it in GitHub Desktop.
Dockerfile nuxt framework
FROM node:latest
WORKDIR /usr/src/app
COPY . ./
RUN npx yarn install
RUN npx yarn stub
CMD ["/bin/bash"]
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment