13 lines
201 B
Docker
13 lines
201 B
Docker
FROM node:16
|
|
LABEL authors="kubbo"
|
|
|
|
RUN apt-get update && apt-get install -y expect
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm i --registry=http://registry.npmmirror.com
|
|
|
|
EXPOSE 12525
|
|
|
|
CMD ["node", "index.js"]
|