15 lines
243 B
Docker
15 lines
243 B
Docker
FROM node:16-slim
|
|
LABEL authors="kubbo"
|
|
|
|
|
|
RUN yum update -y && yum install -y bash
|
|
RUN yum clean all && rm -rf /var/cache/yum
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm i --registry=http://registry.npmmirror.com
|
|
|
|
EXPOSE 12525
|
|
|
|
CMD ["node", "index.js"]
|