Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial add of the Dockerfile #2

Merged
merged 1 commit into from
Jan 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This Dockerfile builds on the official node alpine container.

# This produces a docker image that contains a working copy of cws-shelf-upload
# which will run as the default command. If you wish to run a shell /bin/sh
# is available.

FROM node:alpine

RUN npm install -g cws-shelf-upload

CMD ["cws-shelf-upload"]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ Use `npm` to install this tool.

$ sudo npm install -g cws-shelf-upload

Dockerfile
----------

A `Dockerfile` is provided in the root of the repository. This builds a container with `cws-shelf-upload` installed. It is provided for convenience, it may be out of date or removed at any point in the future.

License
-------
Expand Down