mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-02-28 20:12:03 +00:00
12 lines
174 B
Docker
12 lines
174 B
Docker
FROM alpine:3.3
|
|
|
|
MAINTAINER David Routhieau "rootio@protonmail.com"
|
|
|
|
RUN apk add --update --no-cache \
|
|
nodejs
|
|
|
|
ADD . /usr/src/
|
|
WORKDIR /usr/src/
|
|
|
|
CMD ["node", "test.js"]
|