Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit a016b63

Browse files
committed
add Dockerfile that installs Vorlonjs from the npm package
1 parent 7be5ab5 commit a016b63

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Dockerfile-npm

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# use the node argon (4.4.3) image as base
2+
FROM node:argon
3+
4+
# Set the Vorlon.JS Docker Image maintainer
5+
MAINTAINER Julien Corioland (Microsoft, DX)
6+
7+
# Expose port 1337
8+
EXPOSE 1337
9+
10+
# Upgrade to last NPM version
11+
RUN npm upgrade -g npm
12+
13+
# Install Vorlonjs
14+
RUN npm install -g [email protected]
15+
16+
# Set the entry point
17+
ENTRYPOINT ["vorlon"]

0 commit comments

Comments
 (0)