Serverminecraft / Dockerfile
THEZYZSTUDIO's picture
Create Dockerfile
55c1058 verified
Raw
History Blame Contribute Delete
254 Bytes
FROM node:20-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
cmake \
build-essential \
python3 \
&& rm -rf /var/lib/apt/lists/*
COPY package.json ./
RUN npm install
COPY index.js ./
EXPOSE 7860
CMD ["node", "index.js"]