Skip to content

Instantly share code, notes, and snippets.

@oneteamai
Last active July 21, 2020 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oneteamai/ea488b5213bc780fbbacf1351e283b5b to your computer and use it in GitHub Desktop.
Save oneteamai/ea488b5213bc780fbbacf1351e283b5b to your computer and use it in GitHub Desktop.
Initial Dockerfile that results in a 2.1GB image
# base image
FROM node:13.10.1-alpine
# set working directory
WORKDIR /app
COPY . .
ENV PATH /app/node_modules/.bin:$PATH
# install
COPY package.json /app/package.json
RUN apk add yarn
RUN yarn install --production
RUN yarn build
RUN yarn global add serve
# start app
CMD serve -s build -l 3000
@oneteamai
Copy link
Author

changed name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment