Skip to content

Instantly share code, notes, and snippets.

@gwpantazes
Created May 25, 2023 01:07
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 gwpantazes/f930c4641546ecb4968562940e22999c to your computer and use it in GitHub Desktop.
Save gwpantazes/f930c4641546ecb4968562940e22999c to your computer and use it in GitHub Desktop.
Jobs Done Dockerfile
FROM node:16.18
RUN git clone --single-branch https://github.com/skidding/jobs-done.git /jobsdone
WORKDIR /jobsdone
COPY data.js data.js
RUN yarn install \
&& yarn build \
&& yarn global add http-server
CMD [ "http-server", "build" ]
EXPOSE 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment