mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-09 07:22:40 -04:00
8 lines
83 B
Docker
Executable file
8 lines
83 B
Docker
Executable file
FROM node:4.4
|
|
MAINTAINER "bt3"
|
|
|
|
EXPOSE 1337
|
|
|
|
COPY server.js .
|
|
|
|
CMD node server.js
|