14 lines
194 B
Docker
14 lines
194 B
Docker
FROM node:latest
|
|
|
|
# Set working directoy
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy dependencies and install
|
|
RUN npm install -g sibilant
|
|
|
|
# Copy code
|
|
COPY crossbeam.lisp .
|
|
|
|
CMD sibilant -x -f crossbeam.lisp
|
|
|