mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-07 14:32:57 -04:00
8 lines
89 B
Docker
Executable file
8 lines
89 B
Docker
Executable file
FROM node:4.4
|
|
MAINTAINER "Mia Stein"
|
|
|
|
EXPOSE 1337
|
|
|
|
COPY server.js .
|
|
|
|
CMD node server.js
|